Update README.md
Browse files
README.md
CHANGED
|
@@ -108,4 +108,22 @@ if __name__ == "__main__":
|
|
| 108 |
user_input = input("👤 Utente: ")
|
| 109 |
if user_input.lower() in ["exit", "quit"]:
|
| 110 |
break
|
| 111 |
-
print("🤖 Assistant:", chat_inference(user_input), "\n")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
user_input = input("👤 Utente: ")
|
| 109 |
if user_input.lower() in ["exit", "quit"]:
|
| 110 |
break
|
| 111 |
+
print("🤖 Assistant:", chat_inference(user_input), "\n")
|
| 112 |
+
````
|
| 113 |
+
|
| 114 |
+
---
|
| 115 |
+
|
| 116 |
+
## Integrazione consigliata
|
| 117 |
+
|
| 118 |
+
* **Applicazioni mobile o embedded** → basso consumo di RAM e CPU.
|
| 119 |
+
* **Sperimentazione NLP** → utile per test di prompt, fine-tuning mirato o creazione di dati sintetici.
|
| 120 |
+
* **Pipeline leggere di dialogo** → compatibile con `transformers` e `bitsandbytes` per quantizzazione.
|
| 121 |
+
|
| 122 |
+
---
|
| 123 |
+
|
| 124 |
+
## Riferimenti
|
| 125 |
+
|
| 126 |
+
* Dataset: [italian-dataset-mini](https://huggingface.co/datasets/ruslanmv/italian-dataset-mini)
|
| 127 |
+
* Autore: [Mattimax](https://huggingface.co/Mattimax)
|
| 128 |
+
* Organizzazione: [M.INC](https://huggingface.co/MINC01)
|
| 129 |
+
* Collezione: [Little_DAC Collection](https://huggingface.co/collections/Mattimax/little-dac-collection-68e11d19a5949d08e672b312)
|