Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,6 @@ st.markdown(
|
|
23 |
)
|
24 |
|
25 |
st.markdown('<h1 class="title">Traducción Instantánea</h1>', unsafe_allow_html=True)
|
26 |
-
st.markdown('<h1 Integrantes:</h1>', unsafe_allow_html=True)
|
27 |
st.markdown('<h1 class="title">Inglés - Español y Español - Inglés</h1>', unsafe_allow_html=True)
|
28 |
|
29 |
# Cargar los modelos de traducción
|
@@ -33,6 +32,7 @@ modelo_es_en = 'Helsinki-NLP/opus-mt-es-en' # Español a Inglés
|
|
33 |
traductor_en_es = pipeline('translation', model=modelo_en_es)
|
34 |
traductor_es_en = pipeline('translation', model=modelo_es_en)
|
35 |
|
|
|
36 |
# Entrada de texto del usuario
|
37 |
texto_a_traducir = st.text_area("Introduce el texto que deseas traducir:", "", key="text_area", height=150)
|
38 |
|
|
|
23 |
)
|
24 |
|
25 |
st.markdown('<h1 class="title">Traducción Instantánea</h1>', unsafe_allow_html=True)
|
|
|
26 |
st.markdown('<h1 class="title">Inglés - Español y Español - Inglés</h1>', unsafe_allow_html=True)
|
27 |
|
28 |
# Cargar los modelos de traducción
|
|
|
32 |
traductor_en_es = pipeline('translation', model=modelo_en_es)
|
33 |
traductor_es_en = pipeline('translation', model=modelo_es_en)
|
34 |
|
35 |
+
|
36 |
# Entrada de texto del usuario
|
37 |
texto_a_traducir = st.text_area("Introduce el texto que deseas traducir:", "", key="text_area", height=150)
|
38 |
|