A word-embedding model answers the analogy paris is to france as tokyo is to ___ by building the target vector
and returning the candidate whose embedding has the highest cosine similarity with .
The three known words:
| word | embedding |
|---|---|
| paris | |
| france | |
| tokyo |
The four candidates:
| candidate | embedding |
|---|---|
| china | |
| asia | |
| kyoto | |
| japan |
Which candidate does the model return?
Select all that apply.