Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -103,7 +103,7 @@ def main():
|
|
103 |
with st.form(key="simplify"):
|
104 |
input_sentence = st.text_area("Original sentence")
|
105 |
tok = st.multiselect(
|
106 |
-
label="Tokens to augment the sentence", options=
|
107 |
if (tok):
|
108 |
st.text("Select the desired intensity")
|
109 |
for idx, t in enumerate(tok):
|
|
|
103 |
with st.form(key="simplify"):
|
104 |
input_sentence = st.text_area("Original sentence")
|
105 |
tok = st.multiselect(
|
106 |
+
label="Tokens to augment the sentence", options=base_tokens, default=base_tokens)
|
107 |
if (tok):
|
108 |
st.text("Select the desired intensity")
|
109 |
for idx, t in enumerate(tok):
|