guymorlan commited on
Commit
1057e2c
1 Parent(s): 71ff61c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ num_translations = st.sidebar.selectbox("Number of Translations:", [1, 2, 3, 4,
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;'>", unsafe_allow_html=True)
14
  outs = list(set([x["translation_text"] for x in result]))
15
  for i in range(len(outs)):
 
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))
13
  st.markdown("<div style='font-size:24px;'>", unsafe_allow_html=True)
14
  outs = list(set([x["translation_text"] for x in result]))
15
  for i in range(len(outs)):