English translation
Browse files
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('
|
| 14 |
-
st.subheader('
|
| 15 |
|
| 16 |
# Plot input.
|
| 17 |
-
user_plot = st.text_area("
|
| 18 |
|
| 19 |
|
| 20 |
# Generaci贸n de la respuesta.
|
| 21 |
# Agregue un bot贸n "Responder" a la interfaz de usuario
|
| 22 |
-
if st.button('
|
| 23 |
-
with st.spinner('
|
| 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 |
|