s-conia commited on
Commit
e026fa4
1 Parent(s): 832d082

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
34
+ For more information about this issue, please refer to our survey paper:
35
+ * [Biases in Large Language Models: Origins, Inventory, and Discussion](https://dl.acm.org/doi/full/10.1145/3597307)
36
+
37
+ ## Training dataset
38
+ The following information is based on the information we could gather, that is, it is NOT official.
39
+ Please take it with a pinch of salt as we continue to study Modello Italia.
40
+ * Modello Italia is probably trained on around 1T tokens of Italian text;
41
+ * **The training data of Modello Italia is unknown.**
42
+
43
+ ## Tokenizer
44
+ The following information is based on the information we could gather, that is, it is NOT official.
45
+ Please take it with a pinch of salt as we continue to study Modello Italia.
46
+ * The tokenizer is **vanilla SentencePiece**, probably trained from scratch on Italian data;
47
+ * Vocabulary size is 50000.
48
+
49
+ ## Model architecture
50
+ The following information is based on the information we could gather, that is, it is NOT official.
51
+ Please take it with a pinch of salt as we continue to study Modello Italia.
52
+ * The model architecture is **based on GPT-NeoX**.
53
+
54
+ ## How to use Modello Italia with Hugging Face transformers
55
+
56
+ ```python
57
+ import torch
58
+ import transformers as tr
59
+
60
+ device = "cuda" if torch.cuda.is_available() else "cpu"
61
+
62
+ tokenizer = tr.AutoTokenizer.from_pretrained("sapienzanlp/modello-italia-9b")
63
+ model = tr.AutoModelForCausalLM.from_pretrained(
64
+ "sapienzanlp/modello-italia-9b",
65
+ device_map="auto",
66
+ torch_dtype=torch.bfloat16
67
+ )
68
+
69
+ MY_SYSTEM_PROMPT_SHORT = (
70
+ "Tu sei Modello Italia, un modello di linguaggio naturale addestrato da iGenius."
71
+ )
72
+ prompt = "Ciao, chi sei?"
73
+ messages = [
74
+ {"role": "system", "content": MY_SYSTEM_PROMPT_SHORT},
75
+ {"role": "user", "content": prompt},
76
+ ]
77
+ tokenized_chat = tokenizer.apply_chat_template(
78
+ messages, tokenize=True, add_generation_prompt=True, return_tensors="pt"
79
+ ).to(device)
80
+
81
+ out = model.generate(
82
+ tokenized_chat,
83
+ max_new_tokens=200,
84
+ do_sample=False
85
+ )
86
+ ```