\ No newline at end of file
diff --git a/master/advanced-tutorials/fastapi/index.html b/master/advanced-tutorials/fastapi/index.html
index fe63b0103..91fb3f28f 100644
--- a/master/advanced-tutorials/fastapi/index.html
+++ b/master/advanced-tutorials/fastapi/index.html
@@ -1,5 +1,5 @@
- Deploying as an API - EDS-NLP
\ No newline at end of file
diff --git a/master/advanced-tutorials/index.html b/master/advanced-tutorials/index.html
index f9f0470ab..0473d0e40 100644
--- a/master/advanced-tutorials/index.html
+++ b/master/advanced-tutorials/index.html
@@ -1,2 +1,2 @@
- Advanced use cases - EDS-NLP
In this section, we review a few advanced use cases:
Adding pre-computed word vectors to spaCy
Deploying your spaCy pipeline as an API
Creating your own component
\ No newline at end of file
diff --git a/master/advanced-tutorials/word-vectors/index.html b/master/advanced-tutorials/word-vectors/index.html
index ba87862d0..a2f6b77b1 100644
--- a/master/advanced-tutorials/word-vectors/index.html
+++ b/master/advanced-tutorials/word-vectors/index.html
@@ -1,5 +1,5 @@
- Word embeddings - EDS-NLP
The only ready-to-use components in EDS-NLP are rule-based components. However, that does not prohibit you from exploiting spaCy's machine learning capabilities! You can mix and match machine learning pipelines, trainable or not, with EDS-NLP rule-based components.
In this tutorial, we will explore how you can use static word vectors trained with Gensim within spaCy.
Training the word embedding, however, is outside the scope of this post. You'll find very well designed resources on the subject in Gensim's documenation.
Using Transformer models
spaCy v3 introduced support for Transformer models through their helper library spacy-transformers that interfaces with HuggingFace's transformers library.
Using transformer models can significantly increase your model's performance.
Adding pre-trained word vectors
spaCy provides a init vectors CLI utility that takes a Gensim-trained binary and transforms it to a spaCy-readable pipeline.
Using it is straightforward :
$ spacyinitvectorsfr/path/to/vectors/path/to/pipeline
+ Word embeddings - EDS-NLP
The only ready-to-use components in EDS-NLP are rule-based components. However, that does not prohibit you from exploiting spaCy's machine learning capabilities! You can mix and match machine learning pipelines, trainable or not, with EDS-NLP rule-based components.
In this tutorial, we will explore how you can use static word vectors trained with Gensim within spaCy.
Training the word embedding, however, is outside the scope of this post. You'll find very well designed resources on the subject in Gensim's documenation.
Using Transformer models
spaCy v3 introduced support for Transformer models through their helper library spacy-transformers that interfaces with HuggingFace's transformers library.
Using transformer models can significantly increase your model's performance.
Adding pre-trained word vectors
spaCy provides a init vectors CLI utility that takes a Gensim-trained binary and transforms it to a spaCy-readable pipeline.