Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 702 Bytes

FAQ.md

File metadata and controls

21 lines (12 loc) · 702 Bytes

FAQ

How to use them?

Please check out our Tutorial.

Are the embeddings ordered in any way?

Yes, the embeddings are ordered by frequencies.

How can I get the frequencies of the words?

In FastText models, you can obtain the frequencies of the words by using the following code:

import fasttext
model = fasttext.load_model("your_embedding_model.bin")
palabras, frecuencias = model.get_words(include_freq=True)

My question is not here

Please feel free to create a new Issue with your doubts or thoughts.