R1j1t / contextualSpellCheck

✔️Contextual word checker for better suggestions
MIT License
405 stars 56 forks source link

Missing requirements #17

Closed AlvaroCavalcante closed 4 years ago

AlvaroCavalcante commented 4 years ago

I installed this great package using pip install contextualSpellCheck, but when I tried to test I got a sequence of errors because of missing requirements. (Pytorch, Transformers, and editdistance). No problem here! I just installed these missing packages manually but would be nice if it installs automatically. So, I recommend modifying the setup.py file with the following configuration. install_requires=[ torch==1.6.0, editdistance==0.5.3, transformers==3.0.2 ]

R1j1t commented 4 years ago

That is a great suggestion. If you want would you like to raise a PR? I can add it over the weekend though

AlvaroCavalcante commented 4 years ago

Ok, I opened a PR! https://github.com/R1j1t/contextualSpellCheck/pull/18