Home > Blockchain >  How to use japanese engine in Spacy
How to use japanese engine in Spacy

Time:12-16

I am building a NLP App using python. I heard the Spacy is proper to NLP and installed it. How should I use the Japanese engine from Spacy?

pip install -u spacy

or

python -m pip -u Spacy

What shall I install more?

CodePudding user response:

You should download and install the language package.

pip spacy download ja_core_news_lg

or

python -m spacy download ja_core_news_lg

If you face an issue, please try this.

python -m spacy download ja_core_news_sm
  • Related