Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ model = SentenceTransformer('sentence-transformers/all-roberta-large-v1', device
|
|
9 |
nltk.download('punkt')
|
10 |
|
11 |
# Preprocessamento manuale (potresti caricare il manuale da un file o base di dati)
|
12 |
-
with open('
|
13 |
text = file.read()
|
14 |
|
15 |
# Tokenizza il testo
|
|
|
9 |
nltk.download('punkt')
|
10 |
|
11 |
# Preprocessamento manuale (potresti caricare il manuale da un file o base di dati)
|
12 |
+
with open('testo.txt', 'r', encoding='utf-8') as file:
|
13 |
text = file.read()
|
14 |
|
15 |
# Tokenizza il testo
|