innocent-charles commited on
Commit
712a623
1 Parent(s): 547251f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -4
README.md CHANGED
@@ -40,17 +40,26 @@ AViLaMa is the large open-source text-vision alignment pre-training model in Afr
40
  - **Authors :** Innocent Charles, Zephania Reuben
41
  - **Funded by :** Sartify LLC,Open Source Community, etc..(We always welcome other donors)
42
  - **Model type :** multilingual & multimodality transformer
43
- - **Language(s) :** en, sw, ha, yo, ig, zu, sn, ar, am, fr, pt
44
  - **License:** apache 2.0
45
 
 
 
 
 
 
 
 
 
 
46
 
47
  ### Model Sources [optional]
48
 
49
  <!-- Provide the basic links for the model. -->
50
 
51
- - **Repository:** [More Information Needed]
52
- - **Paper [optional]:** [More Information Needed]
53
- - **Demo [optional]:** [More Information Needed]
54
 
55
  ## Uses
56
 
 
40
  - **Authors :** Innocent Charles, Zephania Reuben
41
  - **Funded by :** Sartify LLC,Open Source Community, etc..(We always welcome other donors)
42
  - **Model type :** multilingual & multimodality transformer
43
+ - **Language(s) :** en (English), sw (Swahili), ha (Hausa), yo (Yoruba), ig (Igbo), zu (Zulu), sn (Shona), ar (Arabic), am (Amharic), fr (French), pt (Portuguese)
44
  - **License:** apache 2.0
45
 
46
+ ## Load model from hugging face.
47
+ ```python
48
+ import torch
49
+ from transformers import AutoModel, AutoTokenizer
50
+
51
+ model = AutoModel.from_pretrained("sartifyllc/AViLaMa")
52
+ tokenizer = AutoTokenizer.from_pretrained("sartifyllc/AViLaMa")
53
+ model = model.eval()
54
+ ```
55
 
56
  ### Model Sources [optional]
57
 
58
  <!-- Provide the basic links for the model. -->
59
 
60
+ - **Repository :** (AViLaMa-Sources)[https://github.com/Sartify/AViLaMa-Sources]
61
+ - **Paper :** Comming...
62
+ - **Demo :** Comming...
63
 
64
  ## Uses
65