marzinouri commited on
Commit
5ffd473
1 Parent(s): 2f57adb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -1
README.md CHANGED
@@ -8,4 +8,15 @@ widget:
8
  example_title: بایرام
9
  - text: قارداش
10
  example_title: قارداش
11
- ---
 
 
 
 
 
 
 
 
 
 
 
 
8
  example_title: بایرام
9
  - text: قارداش
10
  example_title: قارداش
11
+ ---
12
+ # Language Model-based Embedding (FastText)
13
+ - Type: FastText-based word embedding model
14
+ - Description: This model provides embeddings for Iranian Azerbaijani text using the FastText framework. It allows you to generate word embeddings for Iranian Azerbaijani words and phrases.
15
+
16
+ ## How to use
17
+ ```python
18
+ from huggingface_hub import hf_hub_download
19
+ import fasttext
20
+
21
+ model = fasttext.load_model(hf_hub_download("language-ml-lab/fasttext-azb", "model.bin"))
22
+ ```