Skip to content

Commit

Permalink
No open issue: Hotfix for 2 typos in tutorial 3
Browse files Browse the repository at this point in the history
  • Loading branch information
louisguitton committed Jan 17, 2019
1 parent c2bb0d8 commit 0bd7c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/docs/TUTORIAL_3_WORD_EMBEDDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ word_vectors.save('/path/to/converted')
Some embeddings - such as character-features - are not pre-trained but rather trained on the downstream task. Normally
this requires you to implement a [hierarchical embedding architecture](http://neuroner.com/NeuroNERengine_with_caption_no_figure.png).

With Flair, you need not worry about such things. Just choose the appropriate
With Flair, you don't need to worry about such things. Just choose the appropriate
embedding class and character features will then automatically train during downstream task training.

```python
Expand Down Expand Up @@ -170,7 +170,7 @@ glove_embedding = WordEmbeddings('glove')
character_embeddings = CharacterEmbeddings()
```

Now instantiate the `StackedEmbeddings` class and pass it a list containing these three embeddings.
Now instantiate the `StackedEmbeddings` class and pass it a list containing these two embeddings.

```python
from flair.embeddings import StackedEmbeddings
Expand Down

0 comments on commit 0bd7c6f

Please sign in to comment.