You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I pip installed that only to see that yacs was also required. Interestingly, yacs is in your setup.py file.
pip installing those dependencies got me past the import errors, but then I got the following error:
Traceback (mostrecentcalllast):
File"tools/test_net.py", line69, in<module>charnet.cuda()
File"/home/cmcallister/.pyenv/versions/3.7.4/lib/python3.7/site-packages/torch/nn/modules/module.py", line305, incudareturnself._apply(lambdat: t.cuda(device))
File"/home/cmcallister/.pyenv/versions/3.7.4/lib/python3.7/site-packages/torch/nn/modules/module.py", line202, in_applymodule._apply(fn)
File"/home/cmcallister/.pyenv/versions/3.7.4/lib/python3.7/site-packages/torch/nn/modules/module.py", line202, in_applymodule._apply(fn)
File"/home/cmcallister/.pyenv/versions/3.7.4/lib/python3.7/site-packages/torch/nn/modules/module.py", line202, in_applymodule._apply(fn)
File"/home/cmcallister/.pyenv/versions/3.7.4/lib/python3.7/site-packages/torch/nn/modules/module.py", line224, in_applyparam_applied=fn(param)
File"/home/cmcallister/.pyenv/versions/3.7.4/lib/python3.7/site-packages/torch/nn/modules/module.py", line305, in<lambda>returnself._apply(lambdat: t.cuda(device))
File"/home/cmcallister/.pyenv/versions/3.7.4/lib/python3.7/site-packages/torch/cuda/__init__.py", line192, in_lazy_init_check_driver()
File"/home/cmcallister/.pyenv/versions/3.7.4/lib/python3.7/site-packages/torch/cuda/__init__.py", line102, in_check_driverhttp://www.nvidia.com/Download/index.aspx""")
AssertionError:
Found no NVIDIA driver on your system. Please check that you
have an NVIDIA GPU and installed a driver from
http://www.nvidia.com/Download/index.aspx
Recommended Fix
Updating setup.py to include all of the dependencies and also updating the ReadMe to make it clear that you need a GPU machine in order to run the code.
The text was updated successfully, but these errors were encountered:
Summary
Hi! Great project and very interesting paper. I've encountered two issues:
setup.py
doesn't include all of the dependenciesSteps to Recreate
After following the setup instructions in your ReadME on Ubuntu 18.04 with python 3.7.4, I tried running:
python tools/test_net.py configs/icdar2015_hourglass88.yaml images_dir results_dir
and received the following error:
After pip installing editdistance, I got another import error:
I pip installed that only to see that
yacs
was also required. Interestingly, yacs is in your setup.py file.pip installing those dependencies got me past the import errors, but then I got the following error:
Recommended Fix
Updating
setup.py
to include all of the dependencies and also updating the ReadMe to make it clear that you need a GPU machine in order to run the code.The text was updated successfully, but these errors were encountered: