Spacy profile
Spacy is the world's fastest industrial-grade natural language processing tool. Supports a variety of natural language processing basic functions. IO/Spacy's main functions include word segmentation, part-of-speech tagging, word stem, named entity recognition, noun phrase extraction and so on. Spacy is an open source Python module (extension pack) for natural language processing. For now, Spacy claims to be the fastest, more practical industrial-grade product available. Spacy helps you preprocess information extraction, natural language understanding, and deep learning.Copy the code
The installation
pip install spacy
Copy the code
Download the language pack
Python -m spacy download zh_core_web_sm # python -m spacy Download en_core_web_sm # spacy.load('en_core_web_sm')Copy the code