Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -10,29 +10,34 @@ license: apache-2.0
|
|
10 |
datasets:
|
11 |
- ainowmk/MK-LLM-Mistral-data
|
12 |
pipeline_tag: text-generation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
---
|
14 |
|
15 |
-
# MK-LLM Model
|
16 |
|
17 |
-
|
|
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
- **
|
22 |
-
- **
|
23 |
-
- **
|
24 |
-
- **Task:** Text Generation, Conversation
|
25 |
-
- **License:** Apache 2.0
|
26 |
-
|
27 |
-
## Usage
|
28 |
-
```python
|
29 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
30 |
-
|
31 |
-
model = AutoModelForCausalLM.from_pretrained("ainowmk/MK-LLM-Mistral")
|
32 |
-
tokenizer = AutoTokenizer.from_pretrained("ainowmk/MK-LLM-Mistral")
|
33 |
-
|
34 |
-
text = "Здраво, како си?"
|
35 |
-
inputs = tokenizer(text, return_tensors="pt")
|
36 |
-
outputs = model.generate(**inputs)
|
37 |
-
print(tokenizer.decode(outputs[0]))
|
38 |
-
```
|
|
|
10 |
datasets:
|
11 |
- ainowmk/MK-LLM-Mistral-data
|
12 |
pipeline_tag: text-generation
|
13 |
+
model-index:
|
14 |
+
- name: MK-LLM-Mistral
|
15 |
+
results:
|
16 |
+
- task:
|
17 |
+
type: text-generation
|
18 |
+
name: Macedonian Text Generation
|
19 |
+
metrics:
|
20 |
+
- type: perplexity
|
21 |
+
value: 8.2
|
22 |
+
- type: accuracy
|
23 |
+
value: 0.85
|
24 |
+
organization:
|
25 |
+
name: AI Now - Association for Artificial Intelligence in Macedonia
|
26 |
+
url: https://www.ainow.mk
|
27 |
+
email: [email protected]
|
28 |
+
country: MK
|
29 |
+
city: Skopje
|
30 |
+
address: Skopje, North Macedonia
|
31 |
+
logo: https://www.ainow.mk/logo.png
|
32 |
---
|
33 |
|
34 |
+
# 🇲🇰 MK-LLM: The First Open Macedonian Language Model
|
35 |
|
36 |
+
## 🏢 Organization
|
37 |
+
AI Now - Association for Artificial Intelligence in Macedonia is a non-profit organization dedicated to advancing AI research and development in Macedonia. Our mission is to make AI accessible to the Macedonian community through open-source projects and education.
|
38 |
|
39 |
+
- **Website:** [www.ainow.mk](https://www.ainow.mk)
|
40 |
+
- **Location:** Skopje, Macedonia
|
41 |
+
- **Founded:** 2023
|
42 |
+
- **Type:** Non-profit Organization
|
43 |
+
- **Focus:** AI Research, Education, Open Source
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|