Update README
Browse files
README.md
CHANGED
|
@@ -1,15 +1,17 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-nc-4.0
|
| 3 |
-
language:
|
| 4 |
-
- it
|
| 5 |
-
base_model:
|
| 6 |
-
- gsarti/it5-large
|
| 7 |
-
|
|
|
|
|
|
|
| 8 |
This model card is designed for **Model 2** from the UNIBA system presented at EVALITA 2026. This version of the model is specifically optimized for Italian crossword solving by exploiting partial answer strings.
|
| 9 |
|
| 10 |
---
|
| 11 |
|
| 12 |
-
# Model Card:
|
| 13 |
|
| 14 |
## Model Details
|
| 15 |
|
|
@@ -73,8 +75,8 @@ Evaluation was performed on the official Cruciverb-IT validation and test sets u
|
|
| 73 |
```python
|
| 74 |
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
| 75 |
|
| 76 |
-
tokenizer = AutoTokenizer.from_pretrained("uniba/
|
| 77 |
-
model = AutoModelForSeq2SeqLM.from_pretrained("uniba/
|
| 78 |
|
| 79 |
input_text = "Trova la soluzione dove _ indica un carattere mancante. Caratteri mancanti: 1. Lunghezza soluzione: 4. Soluzione parziale: i_ri. Indizio: Un passo indietro nel tempo"
|
| 80 |
inputs = tokenizer(input_text, return_tensors="pt")
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
language:
|
| 4 |
+
- it
|
| 5 |
+
base_model:
|
| 6 |
+
- gsarti/it5-large
|
| 7 |
+
datasets:
|
| 8 |
+
- cruciverb-it/evalita2026
|
| 9 |
+
---
|
| 10 |
This model card is designed for **Model 2** from the UNIBA system presented at EVALITA 2026. This version of the model is specifically optimized for Italian crossword solving by exploiting partial answer strings.
|
| 11 |
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# Model Card: uniba/cruciverb-it-IT5-partial
|
| 15 |
|
| 16 |
## Model Details
|
| 17 |
|
|
|
|
| 75 |
```python
|
| 76 |
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
| 77 |
|
| 78 |
+
tokenizer = AutoTokenizer.from_pretrained("uniba/cruciverb-it-IT5-partial")
|
| 79 |
+
model = AutoModelForSeq2SeqLM.from_pretrained("uniba/cruciverb-it-IT5-partial")
|
| 80 |
|
| 81 |
input_text = "Trova la soluzione dove _ indica un carattere mancante. Caratteri mancanti: 1. Lunghezza soluzione: 4. Soluzione parziale: i_ri. Indizio: Un passo indietro nel tempo"
|
| 82 |
inputs = tokenizer(input_text, return_tensors="pt")
|