HConley commited on
Commit
a85ea08
·
1 Parent(s): fda2c79

Interfaz en español

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -10,17 +10,17 @@ from src.models.plot_similarity_finder import plot_simil
10
 
11
 
12
  # WebApp title and subtitle
13
- st.title('Movie Recommendation.')
14
- st.subheader('Write you movie plot and find a similar one.')
15
 
16
  # Plot input.
17
- user_plot = st.text_area("Write the plot here...")
18
 
19
 
20
  # Generación de la respuesta.
21
  # Agregue un botón "Responder" a la interfaz de usuario
22
- if st.button('Search'):
23
- with st.spinner('Reading plot...'):
24
  # Procesamiento
25
  result = plot_simil(user_plot)
26
 
 
10
 
11
 
12
  # WebApp title and subtitle
13
+ st.title('Recomendador de Películas')
14
+ st.subheader('Escribe una trama y buscaremos películas con ideas similares.')
15
 
16
  # Plot input.
17
+ user_plot = st.text_area("Escribe tu trama aquí...")
18
 
19
 
20
  # Generación de la respuesta.
21
  # Agregue un botón "Responder" a la interfaz de usuario
22
+ if st.button('Buscar'):
23
+ with st.spinner('Leyendo la trama...'):
24
  # Procesamiento
25
  result = plot_simil(user_plot)
26