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
ModuleNotFoundError Traceback (most recent call last) Cell In[19], line 1 ----> 1 import fasttext 3 model = fasttext.train_supervised(input="ecommerce.train") 4 model.test("ecommerce.test")
ModuleNotFoundError: No module named 'fasttext'
The text was updated successfully, but these errors were encountered:
@gitezri I see the error you are facing:
You need to download fasttext library. For doing it, if you are working in Jupyter notebook then run this command: !pip install fasttext
!pip install fasttext
But if you are not in Jupyter Notebook compiler and using any other compiler such as VS Code, Pycharm etc, then run this command: pip install fasttext
pip install fasttext
Only difference in both these commands is of !(exclamation mark). Hope you understand it well!
Sorry, something went wrong.
No branches or pull requests
ModuleNotFoundError Traceback (most recent call last)
Cell In[19], line 1
----> 1 import fasttext
3 model = fasttext.train_supervised(input="ecommerce.train")
4 model.test("ecommerce.test")
ModuleNotFoundError: No module named 'fasttext'
The text was updated successfully, but these errors were encountered: