We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
after installing requirements I get a "no module named dl" error in WikiQA_CNN+Feat
The text was updated successfully, but these errors were encountered:
dl is defined in the dl_text module. I think the problem is in first line of main.py. Change the following line
dl
dl_text
main.py
from dl_text import *
to
from dl_text import dl
Although this solves the problem, I am not sure why it works.
Sorry, something went wrong.
No branches or pull requests
after installing requirements I get a "no module named dl" error in WikiQA_CNN+Feat
The text was updated successfully, but these errors were encountered: