guymorlan commited on
Commit
7e7155f
1 Parent(s): 34fa3c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -5,14 +5,14 @@ pipeline = pipeline(task="translation", model="guymorlan/English2Shami")
5
 
6
  st.title("English to Levantine Arabic")
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))
13
- st.markdown("<div style='font-size:24px; text-align:right; direction:rtl;'>", unsafe_allow_html=True)
14
  outs = list(set([x["translation_text"] for x in result]))
15
  for i in range(len(outs)):
16
- st.markdown(f"{outs[i]}", unsafe_allow_html=True)
17
  st.markdown("<br>", unsafe_allow_html=True)
18
- st.markdown("</div>", unsafe_allow_html=True)
 
5
 
6
  st.title("English to Levantine Arabic")
7
 
8
+ num_translations = st.sidebar.selectbox("Number of Translations:", [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 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))
13
+ # st.markdown("<div style='font-size:24px; text-align:right; direction:rtl;'>", unsafe_allow_html=True)
14
  outs = list(set([x["translation_text"] for x in result]))
15
  for i in range(len(outs)):
16
+ st.markdown(f"<div style='font-size:24px; text-align:right; direction:rtl;'>{outs[i]}</div>", unsafe_allow_html=True)
17
  st.markdown("<br>", unsafe_allow_html=True)
18
+ #st.markdown("</div>", unsafe_allow_html=True)