flâneur — a map of the web's best reading

Language · spaCy API Documentation

spacy.io · 5,412 words · saved by 1 readers

A text-processing pipeline

Usually you’ll load this once per process as nlp and pass the instance around your application. The Language class is created when you call spacy.load and contains the shared vocabulary and language data , optional binary weights, e.g. provided by a trained pipeline , and the processing pipeline containing components like the tagger or parser that are called on a document in order. You can also add your own processing pipeline components that take a Doc object, modify it and return it. Language.__init__ method Initialize a Language object. Note that the meta is only used for meta information i

Explore this link on the map →

related reading