julio07cesar10 commited on
Commit
1e62af9
1 Parent(s): 1c27f3d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -9
app.py CHANGED
@@ -1,5 +1,5 @@
1
  import streamlit as st
2
- import Time
3
  from transformers import pipeline
4
 
5
  st.title("Traductor Multilenguaje")
@@ -18,19 +18,18 @@ translation_models = {
18
  }
19
 
20
  idiomaseleccionado = st.selectbox("Idiomas:", list(translation_models.keys()))
21
- traductor= pipeline(task="translation", model= translation_models[idiomaseleccionado])
22
 
23
- textoingresado = st.text_Area("Ingrese el texto a traducir:", "")
24
 
25
  if st.button("Traducir"):
26
  with st.spinner("Traduciendo..."):
27
  time.sleep(2)
28
- if user_input:
29
- textotraducido = traductor(textoingresado, max_lenght=500)[0]["textotraducido"]
30
- st.succes("Texto Traducido: "{textotraducido})
31
  else:
32
  st.warning("Ingrese un Texto")
33
-
34
  if st.button("Limpiar"):
35
- textoingresado= ""
36
- st.empty()
 
1
  import streamlit as st
2
+ import time
3
  from transformers import pipeline
4
 
5
  st.title("Traductor Multilenguaje")
 
18
  }
19
 
20
  idiomaseleccionado = st.selectbox("Idiomas:", list(translation_models.keys()))
21
+ traductor = pipeline(task="translation", model=translation_models[idiomaseleccionado])
22
 
23
+ textoingresado = st.text_area("Ingrese el texto a traducir:", "")
24
 
25
  if st.button("Traducir"):
26
  with st.spinner("Traduciendo..."):
27
  time.sleep(2)
28
+ if textoingresado:
29
+ textotraducido = traductor(textoingresado, max_length=500)[0]["translation_text"]
30
+ st.success(f"Texto Traducido: {textotraducido}")
31
  else:
32
  st.warning("Ingrese un Texto")
33
+
34
  if st.button("Limpiar"):
35
+ st.text_area("Ingrese el texto a traducir:", "", key="clear")