Fraser commited on
Commit
bae7bad
1 Parent(s): 58321f5
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -144,7 +144,7 @@ in_2 = st.text_input("Another sentence.", "There are two people playing soccer."
144
  r = st.slider('English Interpolation Ratio', min_value=0.0, max_value=1.0, value=0.5)
145
  container = st.empty()
146
  container.write('Loading...')
147
- out = decode(r, in_1, in_2)
148
  container.empty()
149
  st.write(out)
150
 
 
144
  r = st.slider('English Interpolation Ratio', min_value=0.0, max_value=1.0, value=0.5)
145
  container = st.empty()
146
  container.write('Loading...')
147
+ out = decode(container, r, in_1, in_2)
148
  container.empty()
149
  st.write(out)
150