Git Personal Project 开源项目分类 人工智能 大模型 企业应用 科学研究 AI写开源项目 孵化优质开源项目 数字人定制 AI工具集合-AI导航
Add support for GloVe vectors

This release offers improved support for replacing the word vectors used by spaCy.

To install Stanford's GloVe vectors, trained on the Common Crawl, just run

    sputnik --name spacy install en_glove_cc_300_1m_vectors

To reduce memory usage and loading time, we've trimmed the vocabulary down to 1m entries.

This release also integrates all the code necessary for German parsing. A German model will be
released shortly. To assist in multi-lingual processing, we've added a load() function. To load the English model with the GloVe vectors:

    spacy.load('en', vectors='en_glove_cc_300_1m_vectors')