UnarineLeo commited on
Commit
ec6cd8b
1 Parent(s): 0a31c03

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -19,9 +19,11 @@ def fill_mask(sentences):
19
  def replace_mask(sentence, predicted_word):
20
  return sentence.replace("<mask>", f"**{predicted_word}**")
21
 
22
- st.title("Fill Mask | Zabantu-sot-ven-170m")
23
  st.write(f"")
24
 
 
 
25
  col1, col2 = st.columns(2)
26
 
27
  if 'text_input' not in st.session_state:
 
19
  def replace_mask(sentence, predicted_word):
20
  return sentence.replace("<mask>", f"**{predicted_word}**")
21
 
22
+ st.title("Fill Mask | Zabantu-ven-120m")
23
  st.write(f"")
24
 
25
+ st.markdown("This is a variant of Zabantu pre-trained on a monolingual dataset of Tshivenda(ven) sentences on a transformer network with 120 million traininable parameters.")
26
+
27
  col1, col2 = st.columns(2)
28
 
29
  if 'text_input' not in st.session_state: