Re: Using the same data for both validation and prediction in Keras

2019-08-26 Thread Pankaj Jangid
Amirreza Heidari writes: > I was reading a tutorial for time series prediction by Neural > Networks. I found that this code have used the same test data in the > following code for validation, and later also for prediction. > > history = model.fit(train_X, train_y, epochs=50, batch_size=72, > va

Using the same data for both validation and prediction in Keras

2019-08-23 Thread Amirreza Heidari
I was reading a tutorial for time series prediction by Neural Networks. I found that this code have used the same test data in the following code for validation, and later also for prediction. history = model.fit(train_X, train_y, epochs=50, batch_size=72, validation_data=(test_X, test_y), ver