Cicciokr commited on
Commit
7b22e2e
·
verified ·
1 Parent(s): 1705a9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
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("""dvces et reges carthaginiensivm hanno et mago qui [MASK] punico bello cornelium consulem aput liparas ceperunt""")
33
- print(result)
 
 
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']}")