guymorlan commited on
Commit
45985df
·
1 Parent(s): 2a34fb5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -6,8 +6,12 @@ pipeline = pipeline(task="translation", model="guymorlan/Shami2English")
6
  st.title("Levantine Arabic to English")
7
 
8
  num_translations = st.sidebar.selectbox("Number of Translations:", [1, 2, 3, 4, 5], index=2)
9
- input_text = st.text_input("Enter English text:")
10
 
11
  if input_text:
12
  result = pipeline(input_text, max_length=1024, num_return_sequences=num_translations, num_beams=max(num_translations, 5))[0]['translation_text']
13
- st.markdown("<div style='font-size:24px;'>{}</div>".format(result), unsafe_allow_html=True)
 
 
 
 
 
6
  st.title("Levantine Arabic to English")
7
 
8
  num_translations = st.sidebar.selectbox("Number of Translations:", [1, 2, 3, 4, 5], index=2)
9
+ input_text = st.text_input("Enter ِArabic text:")
10
 
11
  if input_text:
12
  result = pipeline(input_text, max_length=1024, num_return_sequences=num_translations, num_beams=max(num_translations, 5))[0]['translation_text']
13
+ st.markdown("<div style='font-size:24px;'>")
14
+ for i in range(len(result)):
15
+ st.markdown("{}".format(result[i]['generated_text']), unsafe_allow_html=True)
16
+ st.markdown("<br>")
17
+ st.markdown("</div>")