Update README.md
Browse files
README.md
CHANGED
@@ -179,9 +179,9 @@ loaded_model.load_adapter("aya-23-8b-afrimmlu-lin")
|
|
179 |
|
180 |
|
181 |
prompts = [
|
182 |
-
|
183 |
-
Choices : [
|
184 |
-
|
185 |
]
|
186 |
|
187 |
generations = generate_aya_23(prompts, loaded_model)
|
@@ -190,7 +190,15 @@ for p, g in zip(prompts, generations):
|
|
190 |
print(
|
191 |
"PROMPT", p ,"RESPONSE", g, "\n", sep="\n"
|
192 |
)
|
|
|
193 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
|
195 |
```
|
196 |
|
|
|
179 |
|
180 |
|
181 |
prompts = [
|
182 |
+
"""Question: 4 na 3 Ezali boni ?
|
183 |
+
Choices : [12, 4, 32, 21]
|
184 |
+
"""
|
185 |
]
|
186 |
|
187 |
generations = generate_aya_23(prompts, loaded_model)
|
|
|
190 |
print(
|
191 |
"PROMPT", p ,"RESPONSE", g, "\n", sep="\n"
|
192 |
)
|
193 |
+
```
|
194 |
|
195 |
+
```txt
|
196 |
+
PROMPT
|
197 |
+
Question: 4 na 3 Ezali boni ?
|
198 |
+
Choices : [12, 4, 32, 21]
|
199 |
+
|
200 |
+
RESPONSE
|
201 |
+
Boni ya 4 ezali 12.
|
202 |
|
203 |
```
|
204 |
|