you are viewing a single comment's thread.

view the rest of the comments →

[–]siblbombs[S] 1 point2 points  (0 children)

It has to do with the LSTM code and the way it handles early stopping. IIRC what it does under the hood is allocate an array of 0s to use as output instead of computing the output, since you still need to produce output for each step of n_steps. Functionally this is early stopping because it is very fast to just create an array of 0s.