fbaldassarri
commited on
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- LICENSE.md +12 -0
- README.md +81 -3
- USE_POLICY.md +95 -0
- config.json +31 -0
- generation_config.json +6 -0
- modello-italia-9b-ggml-Q2_K.gguf +3 -0
- modello-italia-9b-ggml-Q3_K_L.gguf +3 -0
- modello-italia-9b-ggml-Q3_K_M.gguf +3 -0
- modello-italia-9b-ggml-Q4_0.gguf +3 -0
- modello-italia-9b-ggml-Q4_K_M.gguf +3 -0
- modello-italia-9b-ggml-Q4_K_S.gguf +3 -0
- modello-italia-9b-ggml-Q5_0.gguf +3 -0
- modello-italia-9b-ggml-Q5_K_M.gguf +3 -0
- modello-italia-9b-ggml-Q5_K_S.gguf +3 -0
- modello-italia-9b-ggml-Q6_K.gguf +3 -0
- modello-italia-9b-ggml-Q8_0.gguf +3 -0
- modello-italia-9b-ggml-f16.gguf +3 -0
- modello-italia-9b-ggml-f32.gguf +3 -0
- special_tokens_map.json +23 -0
- tokenizer.model +3 -0
- tokenizer_config.json +43 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
*.gguf filter=lfs diff=lfs merge=lfs -text
|
LICENSE.md
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
iGenius
|
2 |
+
|
3 |
+
Copyright (c) 2024, iGenius S.p.A.
|
4 |
+
|
5 |
+
MIT License
|
6 |
+
|
7 |
+
È concessa l'autorizzazione, gratuitamente, a chiunque di ottenere una copia di Modello Italia e dei file di documentazione associati, di utilizzare Modello Italia senza restrizioni, inclusi senza limitazione i diritti di utilizzare, copiare, modificare, unire, pubblicare, distribuire, concedere in sublicenza e/o vendere copie di Modello Italia, e di consentire alle persone a cui Modello Italia è fornito di farlo, nelle condizioni seguenti:
|
8 |
+
|
9 |
+
Il presente avviso di copyright e il presente avviso di autorizzazione saranno inclusi in tutte le copie o parti sostanziali di Modello Italia.
|
10 |
+
|
11 |
+
IL MODELLO VIENE FORNITO "COSÌ COM'È", SENZA GARANZIE DI ALCUN TIPO, ESPRESSE O IMPLICITE, INCLUSO MA NON LIMITATO A GARANZIE DI COMMERCIABILITÀ, IDONEITÀ PER UN PARTICOLARE SCOPO E NON VIOLAZIONE. IN NESSUN CASO GLI AUTORI O I TITOLARI DEL COPYRIGHT SARANNO RESPONSABILI PER QUALSIASI RICHIESTA, DANNO O ALTRA RESPONSABILITÀ, IN CASO DI AZIONE DI CONTRATTO, TORTO O ALTRIMENTI, DERIVANTE DA, FUORI O IN CONNESSIONE CON IL SOFTWARE O L'USO O ALTRI AFFARI NEL SOFTWARE.
|
12 |
+
|
README.md
CHANGED
@@ -1,3 +1,81 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- it
|
4 |
+
license: mit
|
5 |
+
tags:
|
6 |
+
- pytorch
|
7 |
+
model_name: Modello Italia 9B
|
8 |
+
base_model: sapienzanlp/modello-italia-9b
|
9 |
+
inference: false
|
10 |
+
model_creator: iGeniusAI
|
11 |
+
model_type: gpt-neonx
|
12 |
+
pipeline_tag: text-generation
|
13 |
+
prompt_template: '{prompt}
|
14 |
+
|
15 |
+
'
|
16 |
+
quantized_by: fbaldassarri
|
17 |
+
---
|
18 |
+
|
19 |
+
# Model Card for Modello Italia 9B GGUFs
|
20 |
+
This an UNOFFICIAL GGUF format model files repository for converted/quantized OFFICIAL model checkpoint of *"Modello Italia 9B"*, Large Language Model (LLM) developed by [iGenius](https://it.igenius.ai/) in collaboration with [CINECA](https://www.cineca.it/).
|
21 |
+
* More information about Modello Italia: [click here](https://it.igenius.ai/language-models).
|
22 |
+
|
23 |
+
## 🚨 Disclaimers
|
24 |
+
* This is an UNOFFICIAL quantization of the OFFICIAL model checkpoint released by iGenius.
|
25 |
+
* This model is based also on the conversion made for HF Transformers by [Sapienza NLP, Sapienza University of Rome](https://huggingface.co/sapienzanlp).
|
26 |
+
* The original model was developed using LitGPT, therefore, the weights need to be converted before they can be used with Hugging Face transformers.
|
27 |
+
|
28 |
+
## 🚨 Terms and Conditions
|
29 |
+
* **Note:** By using this model, you accept the iGenius' [**terms and conditions**](https://secure.igenius.ai/legal/italia_terms_and_conditions.pdf).
|
30 |
+
|
31 |
+
### 🚨 About GGUF
|
32 |
+
|
33 |
+
GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp. GGUF offers numerous advantages over GGML, such as better tokenisation, and support for special tokens. It is also supports metadata, and is designed to be extensible.
|
34 |
+
|
35 |
+
Here is an incomplate list of clients and libraries that are known to support GGUF:
|
36 |
+
|
37 |
+
* [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option.
|
38 |
+
* [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions. Supports GPU acceleration.
|
39 |
+
* [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with GPU accel across all platforms and GPU architectures. Especially good for story telling.
|
40 |
+
* [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration.
|
41 |
+
* [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection.
|
42 |
+
* [Faraday.dev](https://faraday.dev/), an attractive and easy to use character-based chat GUI for Windows and macOS (both Silicon and Intel), with GPU acceleration.
|
43 |
+
* [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
|
44 |
+
* [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
|
45 |
+
* [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
|
46 |
+
|
47 |
+
## 🚨 Compatibility
|
48 |
+
|
49 |
+
These quantised GGUFv2 files are compatible with llama.cpp from August 27th 2023 onwards, as of commit [d0cee0d36d5be95a0d9088b674dbb27354107221](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221)
|
50 |
+
|
51 |
+
They are also compatible with many third party UIs and libraries - please see the list at the top of this README.
|
52 |
+
|
53 |
+
## 🚨 Reproducibility
|
54 |
+
This model has been converted/quantized using Intel [neural-speed](https://github.com/intel/neural-speed/).
|
55 |
+
|
56 |
+
## 🚨 Biases and Risks
|
57 |
+
From the terms and conditions of iGenius for Modello Italia:
|
58 |
+
> Modello Italia è concepito per essere utilizzato da tutti e per adattarsi a una vasta gamma di casi
|
59 |
+
d'uso. È stato progettato con l'obiettivo di essere accessibile a persone provenienti da
|
60 |
+
background, esperienze e prospettive diverse. Modello Italia si rivolge agli utenti e alle loro
|
61 |
+
esigenze senza inserire giudizi superflui o normative, riconoscendo al contempo che anche
|
62 |
+
contenuti potenzialmente problematici in determinati contesti possono avere scopi validi in altri.
|
63 |
+
Il rispetto per la dignità e l'autonomia di tutti gli utenti, specialmente in termini di libertà di
|
64 |
+
pensiero ed espressione, è un pilastro fondamentale del suo design. Tuttavia, essendo una nuova
|
65 |
+
tecnologia, Modello Italia comporta rischi legati al suo utilizzo. I test condotti finora sono stati
|
66 |
+
eseguiti in italiano e non hanno potuto coprire tutte le possibili situazioni. Pertanto, come per
|
67 |
+
tutti gli LLM, non è possibile prevedere in anticipo gli output di Modello Italia e il modello
|
68 |
+
potrebbe in alcuni casi generare risposte imprecise, tendenziose o altre risposte discutibili. Prima
|
69 |
+
di utilizzare Modello Italia in qualsiasi contesto, gli sviluppatori sono fortemente incoraggiati a
|
70 |
+
eseguire test di sicurezza e adattamento specifici per le loro applicazioni.
|
71 |
+
|
72 |
+
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.
|
73 |
+
|
74 |
+
For more information about this issue, please refer to our survey paper:
|
75 |
+
* [Biases in Large Language Models: Origins, Inventory, and Discussion](https://dl.acm.org/doi/full/10.1145/3597307)
|
76 |
+
|
77 |
+
## Model architecture
|
78 |
+
* The model architecture is **based on GPT-NeoX**.
|
79 |
+
|
80 |
+
|
81 |
+
|
USE_POLICY.md
ADDED
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Termini e Condizioni d'Uso
|
2 |
+
Modello Italia V. 0.1
|
3 |
+
Il presente accordo (“Accordo”) regola l’utilizzo di Modello Italia e di ogni servizio correlato fornito da iGenius
|
4 |
+
S.p.A., ai seguenti Termini e Condizioni (“T&C”).
|
5 |
+
Utilizzando Modello Italia, l’utente dichiara di aver letto e accettato le seguenti T&C.
|
6 |
+
1. Premesse
|
7 |
+
1.1.
|
8 |
+
Modello Italia è concepito per essere utilizzato da tutti e per adattarsi a una vasta gamma di casi
|
9 |
+
d'uso. È stato progettato con l'obiettivo di essere accessibile a persone provenienti da
|
10 |
+
background, esperienze e prospettive diverse. Modello Italia si rivolge agli utenti e alle loro
|
11 |
+
esigenze senza inserire giudizi superflui o normative, riconoscendo al contempo che anche
|
12 |
+
contenuti potenzialmente problematici in determinati contesti possono avere scopi validi in altri.
|
13 |
+
Il rispetto per la dignità e l'autonomia di tutti gli utenti, specialmente in termini di libertà di
|
14 |
+
pensiero ed espressione, è un pilastro fondamentale del suo design. Tuttavia, essendo una nuova
|
15 |
+
tecnologia, Modello Italia comporta rischi legati al suo utilizzo. I test condotti finora sono stati
|
16 |
+
eseguiti in italiano e non hanno potuto coprire tutte le possibili situazioni. Pertanto, come per
|
17 |
+
tutti gli LLM, non è possibile prevedere in anticipo gli output di Modello Italia e il modello
|
18 |
+
potrebbe in alcuni casi generare risposte imprecise, tendenziose o altre risposte discutibili. Prima
|
19 |
+
di utilizzare Modello Italia in qualsiasi contesto, gli sviluppatori sono fortemente incoraggiati a
|
20 |
+
eseguire test di sicurezza e adattamento specifici per le loro applicazioni.
|
21 |
+
2. Diritti di utilizzo
|
22 |
+
2.1.
|
23 |
+
L'utente riceve una licenza limitata, non esclusiva, mondiale, non trasferibile e senza royalty, per
|
24 |
+
utilizzare, riprodurre, distribuire, copiare, creare opere derivate e apportare modifiche a Modello
|
25 |
+
Italia, in conformità con le presenti T&C e alla relativa licenza MIT.
|
26 |
+
2.2.
|
27 |
+
Se l'utente distribuisce o rende disponibile Modello Italia (o qualsiasi opera derivata da esso)
|
28 |
+
dovrà: (A) fornire una copia del presente Accordo con Modello Italia; e (B) indicare "Sviluppato
|
29 |
+
da Modello Italia" e la Licenza MIT (art. 3) sul sito web, l'interfaccia utente, il blogpost, la pagina
|
30 |
+
informativa o sulla documentazione del prodotto correlato. Se l'utente utilizza Modello Italia per
|
31 |
+
creare, addestrare e/o migliorare in altro modo un modello di intelligenza artificiale, che viene
|
32 |
+
distribuito o reso disponibile, dovrà anche includere "Modello Italia" all'inizio del nome di tale
|
33 |
+
modello di intelligenza artificiale.
|
34 |
+
2.3.
|
35 |
+
L'uso di Modello Italia da parte dell'utente deve essere conforme alle leggi, alla buona fede e ai
|
36 |
+
regolamenti applicabili.
|
37 |
+
2.4.
|
38 |
+
L'utente non utilizzerà Modello Italia o qualsiasi output o risultato di Modello Italia per migliorare
|
39 |
+
qualsiasi altro modello di linguaggio di grandi dimensioni (ad esclusione di Modello Italia o di
|
40 |
+
lavori da esso derivati).
|
41 |
+
3. Licenza MIT
|
42 |
+
3.1.
|
43 |
+
Copyright (c) 2024, iGenius S.p.A.
|
44 |
+
È concessa l'autorizzazione, gratuitamente, a chiunque di ottenere una copia di Modello Italia e
|
45 |
+
dei file di documentazione associati, di utilizzare Modello Italia senza restrizioni, inclusi senza
|
46 |
+
limitazione i diritti di utilizzare, copiare, modificare, unire, pubblicare, distribuire, concedere in
|
47 |
+
sublicenza e/o vendere copie di Modello Italia, e di consentire alle persone a cui Modello Italia è
|
48 |
+
fornito di farlo, nelle condizioni seguenti: Il presente avviso di copyright e il presente avviso di
|
49 |
+
autorizzazione saranno inclusi in tutte le copie o parti sostanziali di Modello Italia.
|
50 |
+
3.2.
|
51 |
+
IL SOFTWARE VIENE FORNITO "COSÌ COM'È", SENZA GARANZIE DI ALCUN TIPO, ESPRESSE O
|
52 |
+
IMPLICITE, INCLUSO MA NON LIMITATO A GARANZIE DI COMMERCIABILITÀ, IDONEITÀ PER UN
|
53 |
+
PARTICOLARE SCOPO E NON VIOLAZIONE. IN NESSUN CASO GLI AUTORI O I TITOLARI DEL
|
54 |
+
COPYRIGHT SARANNO RESPONSABILI PER QUALSIASI RICHIESTA, DANNO O ALTRA
|
55 |
+
RESPONSABILITÀ, IN CASO DI AZIONE DI CONTRATTO, TORTO O ALTRIMENTI, DERIVANTE DA,
|
56 |
+
FUORI O IN CONNESSIONE CON IL SOFTWARE O L'USO O ALTRI AFFARI NEL SOFTWARE.4. Esclusione di garanzia
|
57 |
+
4.1.
|
58 |
+
SALVO DISPOSIZIONI DI LEGGE, I MATERIALI DI MODELLO ITALIA E QUALSIASI RISULTATO DA ESSI
|
59 |
+
DERIVANTE SONO FORNITI “COSÌ COME SONO”, SENZA GARANZIE DI ALCUN TIPO, E IGENIUS
|
60 |
+
DECLINA TUTTE LE GARANZIE DI QUALSIASI TIPO, SIA ESPRESSE CHE IMPLICITE, INCLUSE, SENZA
|
61 |
+
LIMITAZIONI, LE GARANZIE DI TITOLO, NON VIOLAZIONE, COMMERCIABILITÀ O IDONEITÀ PER
|
62 |
+
UNO SCOPO PARTICOLARE. L'UTENTE È L'UNICO RESPONSABILE DELLA DETERMINAZIONE
|
63 |
+
DELL'APPROPRIATEZZA DELL'USO O DELLA RIDISTRIBUZIONE DI MODELLO ITALIA E SI ASSUME
|
64 |
+
TUTTI I RISCHI ASSOCIATI ALL'USO DI MODELLO ITALIA E DI QUALSIASI PRODOTTO E RISULTATO.
|
65 |
+
5. Limitazione di responsabilità
|
66 |
+
5.1.
|
67 |
+
IN NESSUN CASO IGENIUS S.P.A. O SUOI AFFILIATI SARANNO RESPONSABILI, IN BASE A QUALSIASI
|
68 |
+
TEORIA DI RESPONSABILITÀ, SIA PER CONTRATTO, ILLECITO CIVILE, NEGLIGENZA,
|
69 |
+
RESPONSABILITÀ DEL PRODOTTO O ALTRO, DERIVANTE DAL PRESENTE ACCORDO, PER QUALSIASI
|
70 |
+
PERDITA DI PROFITTO O QUALSIASI DANNO INDIRETTO, SPECIALE, CONSEQUENZIALE,
|
71 |
+
INCIDENTALE, ESEMPLARE O PUNITIVO, ANCHE SE IGENIUS O I SUOI AFFILIATI SONO STATI
|
72 |
+
AVVISATI DELLA POSSIBILITÀ DI UNO DEI SUDDETTI.
|
73 |
+
6. Proprietà intellettuale
|
74 |
+
6.1.
|
75 |
+
Ferma la proprietà di iGenius S.p.A. sui materiali di Modello Italia e sui derivati realizzati da o per
|
76 |
+
conto di iGenius S.p.A., qualsiasi opera derivata da Modello Italia sviluppata dall’utente rimarrà
|
77 |
+
di esclusiva proprietà di chi le avrà sviluppate, salva l’applicazione – a pena di decadenza di tale
|
78 |
+
proprietà – di quanto previsto dalle presenti T&C e relativa licenza MIT.
|
79 |
+
6.2.
|
80 |
+
Le presenti T&C non concedono alcuna licenza di marchio relativa ad iGenius e/o a sue controllate
|
81 |
+
e affiliate, ad eccezione di quanto richiesto limitatamente alla descrizione e alla distribuzione di
|
82 |
+
opere derivate di Modello Italia secondo la licenza MIT.
|
83 |
+
7. Termine e risoluzione
|
84 |
+
7.1.
|
85 |
+
Le presenti T&C si applicheranno dall’accettazione delle medesime e comunque dall’utilizzo di
|
86 |
+
Modello Italia e saranno efficaci fino alla sua risoluzione in conformità ai termini e alle condizioni
|
87 |
+
del presente documento. iGenius può risolvere il presente Accordo in caso di violazione di
|
88 |
+
qualsiasi termine o condizione delle presenti T&C. Alla risoluzione dell’Accordo, l’utente dovrà
|
89 |
+
cessare qualsiasi uso di Modello Italia e cancellare qualsiasi documentazione o opera ad esso –
|
90 |
+
direttamente o indirettamente – ricollegabili. Anche dopo la cessazione dell’Accordo, rimarranno
|
91 |
+
vincolanti e valide artt. 4,5 e 8.
|
92 |
+
8. Legge applicabile e Foro competente
|
93 |
+
8.1.
|
94 |
+
Il presente Accordo è regolato e interpretato secondo la legge italiana. Qualsiasi controversia
|
95 |
+
derivante da esso sarà risolta esclusivamente dal Foro di Milano.
|
config.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"GPTNeoXForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_bias": true,
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"attention_probs_dropout_prob": 0,
|
8 |
+
"bos_token_id": 0,
|
9 |
+
"classifier_dropout": 0.1,
|
10 |
+
"eos_token_id": 0,
|
11 |
+
"hidden_act": "gelu_fast",
|
12 |
+
"hidden_dropout": 0.0,
|
13 |
+
"hidden_dropout_prob": 0,
|
14 |
+
"hidden_size": 5120,
|
15 |
+
"initializer_range": 0.02,
|
16 |
+
"intermediate_size": 12800,
|
17 |
+
"layer_norm_eps": 1e-05,
|
18 |
+
"max_position_embeddings": 4096,
|
19 |
+
"model_type": "gpt_neox",
|
20 |
+
"num_attention_heads": 32,
|
21 |
+
"num_hidden_layers": 34,
|
22 |
+
"rope_scaling": null,
|
23 |
+
"rotary_emb_base": 10000,
|
24 |
+
"rotary_pct": 0.4,
|
25 |
+
"tie_word_embeddings": false,
|
26 |
+
"torch_dtype": "float32",
|
27 |
+
"transformers_version": "4.41.2",
|
28 |
+
"use_cache": true,
|
29 |
+
"use_parallel_residual": true,
|
30 |
+
"vocab_size": 50176
|
31 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 0,
|
4 |
+
"eos_token_id": 0,
|
5 |
+
"transformers_version": "4.41.2"
|
6 |
+
}
|
modello-italia-9b-ggml-Q2_K.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dccea6258a756cc70006e469aa1f2aa2a5922acbcccff0bccc73019f5a0c455e
|
3 |
+
size 3253029056
|
modello-italia-9b-ggml-Q3_K_L.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9cede23818e54ce21046170b0faeff1e5684fd075e1e3b742a6079a8d8bcc202
|
3 |
+
size 4936362176
|
modello-italia-9b-ggml-Q3_K_M.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4cdbccb4f3dfdff30b6a4d91e405a028afc1657ce4b0cc0b88aa367cb49989ab
|
3 |
+
size 4562806976
|
modello-italia-9b-ggml-Q4_0.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1445133b011084a9cce46c570fb8bfe079b5ab94456a3d120892b535b9362386
|
3 |
+
size 4876478656
|
modello-italia-9b-ggml-Q4_K_M.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b68eae7726487fab8fafe7e592f7975802202313003a8753fcaf3de6a7bc9fc7
|
3 |
+
size 5497944256
|
modello-italia-9b-ggml-Q4_K_S.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:55f8040fdb22c69657cbcb7b6da03701c9e823a84015b6e900bba2f3abc8f4e2
|
3 |
+
size 4909246656
|
modello-italia-9b-ggml-Q5_0.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c33320edd651f60bc883bd94583bbed2afc36419e90fbfbdfea1aefc02fe7901
|
3 |
+
size 5911292096
|
modello-italia-9b-ggml-Q5_K_M.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1263386ceeb192163685e0c5782b5aa0c70c2a8045daf41b9f9bbbf07ac82029
|
3 |
+
size 6414383296
|
modello-italia-9b-ggml-Q5_K_S.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:95d0070f3b85d2d8e7e97abd2d06ee2320f89c99981a6643bd6924fe4bf9598b
|
3 |
+
size 5911292096
|
modello-italia-9b-ggml-Q6_K.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e14d4d0084c74af8d905b511a3922111b5a616ac205958a73176c81e804a3d84
|
3 |
+
size 7010781376
|
modello-italia-9b-ggml-Q8_0.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2d2255ff158dcb4960ebf67b7fed4c374d5f3c40480690bed80b6df7fe22ffba
|
3 |
+
size 9077950656
|
modello-italia-9b-ggml-f16.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a5c46a236f68a530d518b9114b26282c757d7261e84d4b2e7cb96b7bf498b1c8
|
3 |
+
size 17079896192
|
modello-italia-9b-ggml-f32.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:061d9a0985b6868456c0a5779d53d1a05fc5bd1c23152beb72c9f4d10727d15d
|
3 |
+
size 34150713472
|
special_tokens_map.json
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<s>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"eos_token": {
|
10 |
+
"content": "</s>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"unk_token": {
|
17 |
+
"content": "<unk>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
}
|
23 |
+
}
|
tokenizer.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bd74bea2ba620d87e0a2127d9a21196b862a5cc7942ba4638eb2159bbab3340c
|
3 |
+
size 1090536
|
tokenizer_config.json
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": true,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"add_prefix_space": true,
|
5 |
+
"added_tokens_decoder": {
|
6 |
+
"0": {
|
7 |
+
"content": "<unk>",
|
8 |
+
"lstrip": false,
|
9 |
+
"normalized": false,
|
10 |
+
"rstrip": false,
|
11 |
+
"single_word": false,
|
12 |
+
"special": true
|
13 |
+
},
|
14 |
+
"1": {
|
15 |
+
"content": "<s>",
|
16 |
+
"lstrip": false,
|
17 |
+
"normalized": false,
|
18 |
+
"rstrip": false,
|
19 |
+
"single_word": false,
|
20 |
+
"special": true
|
21 |
+
},
|
22 |
+
"2": {
|
23 |
+
"content": "</s>",
|
24 |
+
"lstrip": false,
|
25 |
+
"normalized": false,
|
26 |
+
"rstrip": false,
|
27 |
+
"single_word": false,
|
28 |
+
"special": true
|
29 |
+
}
|
30 |
+
},
|
31 |
+
"bos_token": "<s>",
|
32 |
+
"chat_template": "{% for message in messages %}\n{% if message['role'] == 'user' %}\n{{ '<|user|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'system' %}\n{{ '<|system|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'assistant' %}\n{{ '<|assistant|>\n' + message['content'] + eos_token }}\n{% endif %}\n{% if loop.last and add_generation_prompt %}\n{{ '<|assistant|>' }}\n{% endif %}\n{% endfor %}",
|
33 |
+
"clean_up_tokenization_spaces": false,
|
34 |
+
"eos_token": "</s>",
|
35 |
+
"legacy": true,
|
36 |
+
"model_max_length": 1000000000000000019884624838656,
|
37 |
+
"pad_token": null,
|
38 |
+
"sp_model_kwargs": {},
|
39 |
+
"spaces_between_special_tokens": false,
|
40 |
+
"tokenizer_class": "LlamaTokenizer",
|
41 |
+
"unk_token": "<unk>",
|
42 |
+
"use_default_system_prompt": false
|
43 |
+
}
|