Spaces:
Runtime error
Runtime error
Commit
·
f989dc6
1
Parent(s):
eaa911e
Update app.py
Browse files
app.py
CHANGED
@@ -156,5 +156,5 @@ model.load_weights(weights_path)
|
|
156 |
values = list("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 ")
|
157 |
text = st.text_area('Escriba una frase a traducir: ')
|
158 |
if text:
|
159 |
-
out =
|
160 |
st.text(out)
|
|
|
156 |
values = list("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 ")
|
157 |
text = st.text_area('Escriba una frase a traducir: ')
|
158 |
if text:
|
159 |
+
out = translate(remover(text.lower()))
|
160 |
st.text(out)
|