Lukeds14 commited on
Commit
02d1344
verified
1 Parent(s): eee9d87

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md CHANGED
@@ -45,6 +45,32 @@ A continuaci贸n, se detalla cada parte del c贸digo en app.py.
45
  import streamlit as st
46
  from transformers import pipeline
47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
 
49
 
50
 
 
45
  import streamlit as st
46
  from transformers import pipeline
47
 
48
+ Importaciones: Se importan las bibliotecas necesarias. streamlit se utiliza para crear la interfaz web, mientras que pipeline de transformers
49
+ se utiliza para cargar los modelos de traducci贸n.
50
+
51
+ # T铆tulo de la aplicaci贸n
52
+ st.markdown(
53
+ """
54
+ <style>
55
+ .title {
56
+ text-align: center;
57
+ color: #4CAF50; /* Color del t铆tulo */
58
+ font-size: 36px; /* Tama帽o del texto */
59
+ margin-bottom: 20px; /* Espacio debajo del t铆tulo */
60
+ }
61
+ .text-area {
62
+ margin-bottom: 20px; /* Espacio debajo del 谩rea de texto */
63
+ }
64
+ .selectbox {
65
+ margin-bottom: 20px; /* Espacio debajo del selectbox */
66
+ }
67
+ </style>
68
+ """,
69
+ unsafe_allow_html=True
70
+ )
71
+
72
+ st.markdown('<h1 class="title">Traducci贸n Instant谩nea: Ingl茅s - Espa帽ol y Espa帽ol - Ingl茅s</h1>', unsafe_allow_html=True)
73
+
74
 
75
 
76