Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ from transformers import pipeline, AutoModelForMaskedLM, AutoTokenizer
|
|
9 |
st.title("Completamento del testo in Latino con Latin BERT")
|
10 |
st.write("Inserisci un testo con il token [MASK] per vedere le previsioni del modello.")
|
11 |
|
12 |
-
|
13 |
input_text = st.text_input("Testo:", value="Lorem ipsum dolor sit amet, [MASK] adipiscing elit.")
|
14 |
|
15 |
#modelname = "./models/latin_bert/"
|
@@ -24,10 +24,11 @@ if input_text:
|
|
24 |
predictions = fill_mask(input_text)
|
25 |
st.subheader("Risultati delle previsioni con Simple Latin Bert:")
|
26 |
for pred in predictions:
|
27 |
-
st.write(f"**Parola**: {pred['token_str']}, **Probabilità**: {pred['score']:.4f}")
|
28 |
|
29 |
st.subheader("Risultati delle previsioni con Latin Bert:")
|
30 |
path_to_latin_bert = "./models/latin_bert/"
|
31 |
unmasker = pipeline('fill-mask', model=path_to_latin_bert)
|
32 |
-
result = unmasker(
|
33 |
-
|
|
|
|
9 |
st.title("Completamento del testo in Latino con Latin BERT")
|
10 |
st.write("Inserisci un testo con il token [MASK] per vedere le previsioni del modello.")
|
11 |
|
12 |
+
#dvces et reges carthaginiensivm hanno et mago qui [MASK] punico bello cornelium consulem aput liparas ceperunt
|
13 |
input_text = st.text_input("Testo:", value="Lorem ipsum dolor sit amet, [MASK] adipiscing elit.")
|
14 |
|
15 |
#modelname = "./models/latin_bert/"
|
|
|
24 |
predictions = fill_mask(input_text)
|
25 |
st.subheader("Risultati delle previsioni con Simple Latin Bert:")
|
26 |
for pred in predictions:
|
27 |
+
st.write(f"**Parola**: {pred['token_str']}, **Probabilità**: {pred['score']:.4f}, **Sequence**: {pred['sequence']}")
|
28 |
|
29 |
st.subheader("Risultati delle previsioni con Latin Bert:")
|
30 |
path_to_latin_bert = "./models/latin_bert/"
|
31 |
unmasker = pipeline('fill-mask', model=path_to_latin_bert)
|
32 |
+
result = unmasker(input_text)
|
33 |
+
for pred_due in result:
|
34 |
+
st.write(f"**Parola**: {pred_due['token_str']}, **Probabilità**: {pred_due['score']:.4f}, **Sequence**: {pred_due['sequence']}")
|