ec98 commited on
Commit
2fe28fc
1 Parent(s): 4edca72

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -90,7 +90,7 @@ st.sidebar.title('Parámetros del Modelo')
90
 
91
  model_type = st.sidebar.selectbox('Selecciona el modelo', ('LSTM', 'Otro Modelo'))
92
  num_epochs = st.sidebar.slider('Número de épocas', 100, 200)
93
- # learning_rate = st.sidebar.number_input('Tasa de aprendizaje', 0.001, 0.1, 0.01, 0.001)
94
 
95
  if model_type == 'LSTM':
96
  input_size = 1
 
90
 
91
  model_type = st.sidebar.selectbox('Selecciona el modelo', ('LSTM', 'Otro Modelo'))
92
  num_epochs = st.sidebar.slider('Número de épocas', 100, 200)
93
+ learning_rate = st.sidebar.number_input('Tasa de aprendizaje', 0.001, 0.1, 0.01, 0.001)
94
 
95
  if model_type == 'LSTM':
96
  input_size = 1