Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ If you want to use English tokenizer from `SpaCy <http://spacy.io/>`_, you need
pip install spacy
python -m spacy download en_core_web_sm

Alternatively, you might want to use the `Moses <http://www.statmt.org/moses/>`_ tokenizer port in `SacreMoses <https://github.com/alvations/sacremoses>`_ (split from `NLTK <http://nltk.org/>`_). You have to install SacreMoses::
Alternatively, you might want to use the `Moses <http://www.statmt.org/moses/>`_ tokenizer port in `SacreMoses <https://github.com/hplt-project/sacremoses>`_ (split from `NLTK <http://nltk.org/>`_). You have to install SacreMoses::

pip install sacremoses

Expand Down
2 changes: 1 addition & 1 deletion torchtext/data/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def get_tokenizer(tokenizer, language="en"):
except ImportError:
print(
"Please install SacreMoses. "
"See the docs at https://github.com/alvations/sacremoses "
"See the docs at https://github.com/hplt-project/sacremoses "
"for more information."
)
raise
Expand Down