JPBianchi commited on
Commit
4eaa2fa
1 Parent(s): d1db8b5

LSTM update

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -93,7 +93,7 @@ y_train, y_test = y[:split_index], y[split_index:]
93
  model = build_lstm_model(X_train, output_size=1, neurons=lstm_neurons, dropout=dropout, loss=loss, optimizer=optimizer)
94
 
95
  # Saved Weights
96
- file_path = "models/LSTM_" + ticker + "_weights.h5"
97
 
98
  # Loads the weights
99
  model.load_weights(file_path)
 
93
  model = build_lstm_model(X_train, output_size=1, neurons=lstm_neurons, dropout=dropout, loss=loss, optimizer=optimizer)
94
 
95
  # Saved Weights
96
+ file_path = "LSTM_" + ticker + "_weights.h5"
97
 
98
  # Loads the weights
99
  model.load_weights(file_path)