v1.8.2: French model and small improvements
We've been delighted to see spaCy growing so much over the last few months. Before the v1.0 release, we asked for your feedback, which has been incredibly helpful in improving the library. As we're getting closer to v2.0 we hope you'll take a few minutes to fill out the survey, to help us understand how you're using the library, and how it can be better.
📊 Take the survey!
✨ Major features and improvements
- Move model shortcuts to
shortcuts.json
to allow adding new ones without updating spaCy. - NEW: The first official French model (~1.3 GB) including vocab, syntax and word vectors.
python -m spacy download fr_depvec_web_lg
import fr_depvec_web_lg
nlp = fr_depvec_web_lg.load()
doc = nlp(u'Parlez-vous Français?')
🔴 Bug fixes
- Fix reporting if
train
command is used withoutdev_data
. - Fix issue #1019: Make
Span
hashable.
📖 Documentation and examples
- Update list of available models with more information (capabilities, license).
- Update adding languages workflow with data examples and details on training.
- Fix various typos and inconsistencies.
👥 Contributors
Thanks to @raphael0202 and @julien-c for the contributions!