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]


=RNN=
[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).
[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).


Line 11: Line 12:


[http://machinelearningmastery.com/time-series-prediction-lstm-recurrent-neural-networks-python-keras/ Time Series Prediction with LSTMs]
[http://machinelearningmastery.com/time-series-prediction-lstm-recurrent-neural-networks-python-keras/ Time Series Prediction with LSTMs]

=GANs=
[https://arxiv.org/abs/1701.00160 GANS]

Revision as of 10:41, 3 January 2017

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

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

GANs

GANS