Hacker News new | ask | show | jobs
by mhanus 3436 days ago
Keras uses the end of the data set as validation, and only randomizes it if the "shuffle" argument is set to True [1].

[1]: https://keras.io/getting-started/faq/#how-is-the-validation-...

1 comments

Except the second half of the data is the flipped of the first half (X = np.concatenate([X, X_flipped]))
Well shit. Thanks for pointing that out. I'll revise.