Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- it
|
5 |
+
---
|
6 |
+
|
7 |
+
# Model Card for Modello Italia 9B
|
8 |
+
Modello Italia is the first Large Language Model (LLM) developed by [iGenius](https://it.igenius.ai/) in collaboration [CINECA](https://www.cineca.it/).
|
9 |
+
* More information about Modello Italia: [click here](https://it.igenius.ai/language-models).
|
10 |
+
|
11 |
+
## 🚨 Disclaimers
|
12 |
+
* This is an UNOFFICIAL conversion of the OFFICIAL model checkpoint released by iGenius.
|
13 |
+
* The original model was developed using LitGPT, therefore, the weights need to be converted before they can be used with Hugging Face transformers.
|
14 |
+
* **Note:** By using this model, you accept the iGenius' [**terms and conditions**](https://secure.igenius.ai/legal/italia_terms_and_conditions.pdf).
|
15 |
+
|
16 |
+
## 🚨 Biases and Risks
|
17 |
+
From the terms and conditions of iGenius for Modello Italia:
|
18 |
+
> Modello Italia è concepito per essere utilizzato da tutti e per adattarsi a una vasta gamma di casi
|
19 |
+
d'uso. È stato progettato con l'obiettivo di essere accessibile a persone provenienti da
|
20 |
+
background, esperienze e prospettive diverse. Modello Italia si rivolge agli utenti e alle loro
|
21 |
+
esigenze senza inserire giudizi superflui o normative, riconoscendo al contempo che anche
|
22 |
+
contenuti potenzialmente problematici in determinati contesti possono avere scopi validi in altri.
|
23 |
+
Il rispetto per la dignità e l'autonomia di tutti gli utenti, specialmente in termini di libertà di
|
24 |
+
pensiero ed espressione, è un pilastro fondamentale del suo design. Tuttavia, essendo una nuova
|
25 |
+
tecnologia, Modello Italia comporta rischi legati al suo utilizzo. I test condotti finora sono stati
|
26 |
+
eseguiti in italiano e non hanno potuto coprire tutte le possibili situazioni. Pertanto, come per
|
27 |
+
tutti gli LLM, non è possibile prevedere in anticipo gli output di Modello Italia e il modello
|
28 |
+
potrebbe in alcuni casi generare risposte imprecise, tendenziose o altre risposte discutibili. Prima
|
29 |
+
di utilizzare Modello Italia in qualsiasi contesto, gli sviluppatori sono fortemente incoraggiati a
|
30 |
+
eseguire test di sicurezza e adattamento specifici per le loro applicazioni.
|
31 |
+
|
32 |
+
We are aware of the biases and potential problematic/toxic content that current pretrained large language models exhibit: more specifically, as probabilistic models of (Italian and English) languages, they reflect and amplify the biases of their training data.
|
33 |
+
For more information about this issue, please refer to our survey:
|
34 |
+
* [Biases in Large Language Models: Origins, Inventory, and Discussion](https://dl.acm.org/doi/full/10.1145/3597307)
|
35 |
+
|
36 |
+
## Training dataset
|
37 |
+
The following information is based on the information we could gather, that is, it is NOT official.
|
38 |
+
Please take it with a pinch of salt as we continue to study Modello Italia.
|
39 |
+
* Modello Italia is probably trained on around 1T tokens of Italian text;
|
40 |
+
* **The training data of Modello Italia is unknown.**
|
41 |
+
|
42 |
+
## Tokenizer
|
43 |
+
The following information is based on the information we could gather, that is, it is NOT official.
|
44 |
+
Please take it with a pinch of salt as we continue to study Modello Italia.
|
45 |
+
* The tokenizer is **vanilla SentencePiece**, probably trained from scratch on Italian data;
|
46 |
+
* Vocabulary size is 50000.
|
47 |
+
|
48 |
+
## Model architecture
|
49 |
+
The following information is based on the information we could gather, that is, it is NOT official.
|
50 |
+
Please take it with a pinch of salt as we continue to study Modello Italia.
|
51 |
+
* The model architecture is **based on GPT-NeoX**.
|
52 |
+
|
53 |
+
## How to use Modello Italia with Hugging Face transformers
|
54 |
+
|
55 |
+
```python
|
56 |
+
import torch
|
57 |
+
import transformers as tr
|
58 |
+
|
59 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
60 |
+
|
61 |
+
tokenizer = tr.AutoTokenizer.from_pretrained("sapienzanlp/modello-italia-9b")
|
62 |
+
model = tr.AutoModelForCausalLM.from_pretrained(
|
63 |
+
"sapienzanlp/modello-italia-9b",
|
64 |
+
device_map="auto",
|
65 |
+
torch_dtype=torch.bfloat16
|
66 |
+
)
|
67 |
+
|
68 |
+
MY_SYSTEM_PROMPT_SHORT = (
|
69 |
+
"Tu sei Modello Italia, un modello di linguaggio naturale addestrato da iGenius."
|
70 |
+
)
|
71 |
+
prompt = "Ciao, chi sei?"
|
72 |
+
messages = [
|
73 |
+
{"role": "system", "content": MY_SYSTEM_PROMPT_SHORT},
|
74 |
+
{"role": "user", "content": prompt},
|
75 |
+
]
|
76 |
+
tokenized_chat = tokenizer.apply_chat_template(
|
77 |
+
messages, tokenize=True, add_generation_prompt=True, return_tensors="pt"
|
78 |
+
).to(device)
|
79 |
+
|
80 |
+
out = model.generate(
|
81 |
+
tokenized_chat,
|
82 |
+
max_new_tokens=200,
|
83 |
+
do_sample=False
|
84 |
+
)
|
85 |
+
```
|