-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Installing libraries #1
Comments
hi there, I use this command on my Macbook Pro
and I can see the notebook from my browser with url "localhost:8888" I am sure about the data in the same directory with homework.ipynb, and the
and below codes are hanging out, that's issue. |
It is likely caused by the fact that notebook and data are stored in different paths. To debug this issue, run To be sure, you can manually upload everything inside jupyter by using the "Upload" button in the top-right (in jupyter main menu) If the problem proves difficult to solve, you can also run in colab using links like this |
I am sure the data and the source file in the same folder, and SOMETIMES the first load sentense can be done , but the second load sentense can NOT, and need a lot of time hanging there. |
Can you give me the full Colab link of this Course? Thank you very much. |
For each week, you will be able to find the respective links in the README, e.g. here |
thank you very much👍 |
closing due to inactivity. Feel free to raise individual issues if facing tough installation problems |
If you have any issues with libraries, post 'em here.
We assume that you have basic data science toolkit (sklearn, numpy/scipy/pandas). Basically whatever comes with default anaconda distribution.
If you don't/can't install that (e.g. you use windows and installation is tricky), there's a docker container available (see below).
Manual install
pip install --upgrade nltk gensim bs4 editdistance
pip install --upgrade tensorflow keras
pip install bokeh tqdm
Installing with GPU
To enable GPU on tensorflow,
pip uninstall tensorflow
(or conda uninstall tensorflow if you used anaconda)conda install tensorflow-gpu
pip install tensorflow-gpu
. Make sure you have the appropriate cuda toolkitInstall with docker
Clone course repo from dockerhub
(or just
docker pull justheuristic/nlp_course
if you have docker shell)If you want to build it yourself, use these instructions.
If you run into any trouble, feel free to post here, even if it's like "i don't know what the hell are all these words!".
The text was updated successfully, but these errors were encountered: