Update README.md
Browse files
README.md
CHANGED
@@ -25,7 +25,7 @@ ItalIA is a state-of-the-art language model specifically trained for the Italian
|
|
25 |
- **Model type:** Transformer-based Large Language Model
|
26 |
- **Language(s) (NLP):** Italian
|
27 |
- **License:** Other
|
28 |
-
- **Finetuned from model
|
29 |
|
30 |
### Model Sources [optional]
|
31 |
|
@@ -76,6 +76,7 @@ Users should be aware of the potential for biased outputs based on the training
|
|
76 |
|
77 |
Use the code below to get started with the model.
|
78 |
|
|
|
79 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
80 |
|
81 |
model_name = "MethosPi/llama3-8b-italIA-unsloth-merged"
|
@@ -87,6 +88,7 @@ input_ids = tokenizer.encode(text, return_tensors="pt")
|
|
87 |
output = model.generate(input_ids)
|
88 |
|
89 |
print(tokenizer.decode(output[0], skip_special_tokens=True))
|
|
|
90 |
|
91 |
## Training Details
|
92 |
|
|
|
25 |
- **Model type:** Transformer-based Large Language Model
|
26 |
- **Language(s) (NLP):** Italian
|
27 |
- **License:** Other
|
28 |
+
- **Finetuned from model:** llama3-8b
|
29 |
|
30 |
### Model Sources [optional]
|
31 |
|
|
|
76 |
|
77 |
Use the code below to get started with the model.
|
78 |
|
79 |
+
**
|
80 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
81 |
|
82 |
model_name = "MethosPi/llama3-8b-italIA-unsloth-merged"
|
|
|
88 |
output = model.generate(input_ids)
|
89 |
|
90 |
print(tokenizer.decode(output[0], skip_special_tokens=True))
|
91 |
+
**
|
92 |
|
93 |
## Training Details
|
94 |
|