-
Notifications
You must be signed in to change notification settings - Fork 46
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
Optional: Set up NLTK packages这个是什么意思呀,可以帮忙讲解一下吗 #38
Comments
Hi, the purpose of these commands is to use pre-downloaded NLTK packages if they are available, because they may be slow to download in some countries. However, it is optional because NLTK will automatically download them from the official server if the files are not available. |
hi, File "span_model.py", line 16, in |
Hi, what is the command that you ran, is it following the model training steps here? |
|
Hi, after you have run the installation steps, you can run the training command below:
|
Optional: Set up NLTK packages
if [[ -f punkt.zip ]]; then
mkdir -p /home/admin/nltk_data/tokenizers
cp punkt.zip /home/admin/nltk_data/tokenizers
fi
if [[ -f wordnet.zip ]]; then
mkdir -p /home/admin/nltk_data/corpora
cp wordnet.zip /home/admin/nltk_data/corpora
fi
不明白这个什么意思,研一学生求求了
The text was updated successfully, but these errors were encountered: