Do 3.4.0 English models use floret vectors? #11541
-
The release notes for spaCy 3.4.0 mention that the English pipelines have new word vectors, and link to spacy-vectors-builder. Does this mean that I'm not sure if the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sorry this was confusing. The current English pipelines do not use floret vectors, including in 3.4. You can check whether a pipeline uses floret vectors with The blog post does include some English pipelines with floret vectors (and nothing else) for demonstration purposes, but they have names like The updates to vectors in 3.4 were to fix long-standing issues like case sensitivity; see #2281. |
Beta Was this translation helpful? Give feedback.
Sorry this was confusing. The current English pipelines do not use floret vectors, including in 3.4. You can check whether a pipeline uses floret vectors with
nlp.vocab.vectors.mode
- it will befloret
for floret vectors, ordefault
for the standard style vectors that predate floret.The blog post does include some English pipelines with floret vectors (and nothing else) for demonstration purposes, but they have names like
en_vectors_floret
-en_core_news
is just a typo.The updates to vectors in 3.4 were to fix long-standing issues like case sensitivity; see #2281.