-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
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
No module named 'file_length' in py3.6 #4
Comments
I applied the following fix and it seems to be working fine in py3.6 in get_loadings.py in get_vecs.py |
also changed dic_terms.iterkeys() to iter(dic_terms.keys()) |
I also made additional changes. The version that seems to be compatible with py3.6 is: https://github.com/weiaiwayne/DDR |
thank you, this was incredibly helpful for replicating the DDR! Just for anyone trying to use this updated version, they'll also have to update "path_info.iterkeys()" to "iter(path_info.keys())" in the load_terms.py file |
I am trying to run ddr in py3.6. I got the following error in jupyter notebook:
ModuleNotFoundError: No module named 'file_length'
The text was updated successfully, but these errors were encountered: