Paulx

Results 1 comments of Paulx

Hi, I had a similar but different problem, I had the following problem while using hyperparameter search via sklearn: ``` def build_model(optimizer): grid_model = Sequential() grid_model.add(LSTM(50, return_sequences=True,input_shape=(30,5))) grid_model.add(LSTM(50)) grid_model.add(Dropout(0.2)) grid_model.add(Dense(1))...