An attempt on stock prediction using simple lstm model
Closing price of the stock is used to fit in the model
80% training : 20% testing is used
LSTM(50, activation='relu', #return_sequences=True, input_shape=(look_back, 1))
Dropout(0.2)
Dense(units=1)
optimizer='adam', loss='mse'
num_epochs = 25