Keras: Difference between revisions
(→RNN) |
No edit summary |
||
| Line 23: | Line 23: | ||
[http://deeplearning.net/tutorial/rnnslu.html#context-window contextwindow function] |
[http://deeplearning.net/tutorial/rnnslu.html#context-window contextwindow function] |
||
[https://keras.io/preprocessing/sequence/ Keras Sequence Preprocessing] - keras.preprocessing.sequence.pad_sequences |
|||
=GANs= |
=GANs= |
||
Revision as of 11:49, 3 January 2017
Keras Callbacks how-can-i-interrupt-training-when-the-validation-loss-isnt-decreasing-anymore
General
This has lots of good infos - Includes an AndrewNG talk and recommended papers.
RNN
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).
Building Autoencoders in Keras - Includes LTSM!!!, Also shows a webserver graph showing progress. How to make a 2d graph. And how to interpolate between numbers...
Help: 'Wrong number of dimensions: expected 3, got 2 with shape (...)
cs231n-CNNs 10 - Recurrent Nerual Networks Lecture
Time Series Prediction with LSTMs
Keras Sequence Preprocessing - keras.preprocessing.sequence.pad_sequences