35 lines
814 B
Markdown
35 lines
814 B
Markdown
---
|
|
library_name: transformers
|
|
language:
|
|
- am
|
|
base_model:
|
|
- rasyosef/Llama-3.2-1B-Amharic
|
|
---
|
|
|
|
This model is an Instruction Tuned version of Llama 3.2 1B Amharic.
|
|
|
|
### How to use
|
|
First, you need to install the latest version of transformers
|
|
```
|
|
pip install -Uq transformers
|
|
```
|
|
|
|
You can use this model directly with a pipeline for text generation:
|
|
|
|
```python
|
|
from transformers import pipeline
|
|
|
|
llama3_am = pipeline(
|
|
"text-generation",
|
|
model="rasyosef/Llama-3.2-1B-Amharic-Instruct",
|
|
device_map="auto"
|
|
)
|
|
|
|
messages = [{"role": "user", "content": "ሶስት የአፍሪካ ሀገራት ጥቀስልኝ"}]
|
|
llama3_am(messages, max_new_tokens=128, repetition_penalty=1.05, return_full_text=False)
|
|
```
|
|
|
|
Output:
|
|
```python
|
|
[{'generated_text': '1. ግብፅ 2. ደቡብ አፍሪካ 3. ኢትዮጵያ'}]
|
|
``` |