HConley commited on
Commit
c52c91c
verified
1 Parent(s): a85ea08

English translation

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('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
 
 
10
 
11
 
12
  # WebApp title and subtitle
13
+ st.title('Film Recommender')
14
+ st.subheader('Write a plot and I'll look for films with similar ideas.')
15
 
16
  # Plot input.
17
+ user_plot = st.text_area("Write your 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 the plot...'):
24
  # Procesamiento
25
  result = plot_simil(user_plot)
26