Keras: Difference between revisions

From Hegemon Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
[https://keras.io/getting-started/faq/#how-can-i-interrupt-training-when-the-validation-loss-isnt-decreasing-anymore how-can-i-interrupt-training-when-the-validation-loss-isnt-decreasing-anymore]
[https://keras.io/getting-started/faq/#how-can-i-interrupt-training-when-the-validation-loss-isnt-decreasing-anymore how-can-i-interrupt-training-when-the-validation-loss-isnt-decreasing-anymore]


[https://github.com/fchollet/keras/issues/3107 Dimension mismatch in LSTM] - Yur input should be in this format (sequences, timesteps, dimensions). So based on your example, your input should be in (None, 8, 2). Your input now is (8,2).
[https://github.com/fchollet/keras/issues/3107 Dimension mismatch in LSTM] - Your input should be in this format (sequences, timesteps, dimensions). So based on your example, your input should be in (None, 8, 2). Your input now is (8,2).

Revision as of 23:01, 2 January 2017

Keras Callbacks how-can-i-interrupt-training-when-the-validation-loss-isnt-decreasing-anymore

Dimension mismatch in LSTM - Your input should be in this format (sequences, timesteps, dimensions). So based on your example, your input should be in (None, 8, 2). Your input now is (8,2).