Update app.py
Browse files
app.py
CHANGED
@@ -45,6 +45,17 @@ with open("./style.css") as f:
|
|
45 |
# Título centrado
|
46 |
st.markdown("<h1 style='text-align: center;'>🤖 ¡Bienvenido a Soph-IA!</h1>", unsafe_allow_html=True)
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
espacio_contenido_generado = st.empty()
|
49 |
|
50 |
st.write("¡Hola! Soy Soph-IA, tu asistente virtual. ¿Cómo puedo ayudarte hoy? 😊")
|
@@ -77,4 +88,3 @@ st.write("¡Gracias por usar Soph-IA! 😊")
|
|
77 |
|
78 |
# Pie de página
|
79 |
st.markdown("<p style='text-align: center;'>© 2024 Jeysshon</p>", unsafe_allow_html=True)
|
80 |
-
|
|
|
45 |
# Título centrado
|
46 |
st.markdown("<h1 style='text-align: center;'>🤖 ¡Bienvenido a Soph-IA!</h1>", unsafe_allow_html=True)
|
47 |
|
48 |
+
# Explicación técnica de Soph-IA
|
49 |
+
st.markdown("""
|
50 |
+
<p style='text-align: center;'>
|
51 |
+
Soy <strong>Soph-IA</strong>, una inteligencia artificial basada en redes neuronales profundas, derivada de la arquitectura
|
52 |
+
<strong>VGG16</strong>. Combino técnicas avanzadas de procesamiento de lenguaje natural y visión por computadora.
|
53 |
+
Para el análisis de texto, utilizo transformadores que permiten comprender el contexto y generar respuestas precisas.
|
54 |
+
En el caso de imágenes, empleo redes convolucionales para extraer características clave y ofrecer respuestas acordes a la
|
55 |
+
información visual procesada.
|
56 |
+
</p>
|
57 |
+
""", unsafe_allow_html=True)
|
58 |
+
|
59 |
espacio_contenido_generado = st.empty()
|
60 |
|
61 |
st.write("¡Hola! Soy Soph-IA, tu asistente virtual. ¿Cómo puedo ayudarte hoy? 😊")
|
|
|
88 |
|
89 |
# Pie de página
|
90 |
st.markdown("<p style='text-align: center;'>© 2024 Jeysshon</p>", unsafe_allow_html=True)
|
|