-
Notifications
You must be signed in to change notification settings - Fork 9
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
which is the python version required for this code? #4
Comments
Hi @VijayIyer : Facing similar kind of issues, have you found answers for your questions. If so, kindly share |
Same problem here, pandas 0.22.0 is only compatible with python 2.7, 3.5 and 3.6, while torch 1.2.0 doesn't work with those versions for me |
I manually installed the version specific packages. There was actually quite a few workarounds I had to do. This was a while back so I don't recall very well. Below are some changes I had to make to make it work. importing gensim for gensim.downloader as api ..............error in generate.py ...installed sumeval in generate.py ....sacrebleu 1.5.1 ....needed to make prepare_default to prepare_yelp-default midway ...get_agg_name in utils.py....change in name reading .......torchtext/utils.py line 130 replacing maxInt in place of sys.maxsize...for windows?? ....csv.writer takes newline="" argument |
To get the packages to work, I used python 3.6.4, sumeval 0.1.7 and also sacrebleu 1.5.1. and gensim 3.8.3 To get the right PyTorch package I also had to provide the download link, so I also managed to fix most of the other bugs (altough it still doesn't fully work on the default dataset). I pushed it to my fork https://github.com/EricvanSchaik/opiniondigest |
The text was updated successfully, but these errors were encountered: