Browse Source

feat(nlp-spacy/ex5): update specifications and audit question

pull/2353/head
nprimo 5 months ago committed by Niccolò Primo
parent
commit
388212165f
  1. 2
      subjects/ai/nlp-spacy/README.md
  2. 8
      subjects/ai/nlp-spacy/audit/README.md

2
subjects/ai/nlp-spacy/README.md

@ -84,7 +84,7 @@ The goal of this exercise is to learn to tokenize a document using `spaCy`. We d
The goal of this exercise is to learn to use `spaCy` embedding on a document.
1. Compute the embedding of all the words in this sentence. The language model considered is `en_core_web_md`
1. Compute the embedding of all the words in this sentence. The language model considered is `en_core_web_md` version 3.4.1.
```
"laptop computer coffee tea water liquid dog cat kitty"

8
subjects/ai/nlp-spacy/audit/README.md

@ -48,14 +48,10 @@
##### The exercise is validated if all questions of the exercise are validated
###### For question 1, have the embeddings of each word a shape of `(300,)` and are the first 20 values of the embedding of laptop the following?
###### For question 1, have the embeddings of each word a shape of `(300,)` and is the sum of the first 20 values of the embedding of laptop the following?
```
array([-0.37639 , -0.075521, 0.4908 , 0.19863 , -0.11088 , -0.076145,
-0.30367 , -0.69663 , 0.87048 , 0.54388 , 0.42523 , 0.18045 ,
-0.4358 , -0.32606 , -0.70702 , -0.069127, -0.42674 , 2.4147 ,
0.26806 , 0.46584 ], dtype=float32)
5.710388
```
###### For question 2, is the output the following?

Loading…
Cancel
Save