keras-extra icon indicating copy to clipboard operation
keras-extra copied to clipboard

Extra Layers for Keras to connect CNN with RNN

Results 4 keras-extra issues
Sort by recently updated
recently updated
newest added

Hello anayebi, I can't find the final file "setup.py" in the keras directory. I also don't know if I have to copy theano and tensorflow backend files. Thanks, Hatem

Hi, I am trying to train LSTM, but while training accuracy remains zero in each epoch. I have transformed data to multivariate Time-series data and also shape in three-dimensional shape....

Hi, @anayebi , I am a newbie in keras, I want to do sequence classification (e.g., 2 classes, each element in the sequence is a 2d matrix or image) just...

n_hidden = 256 n_samples = 100 n_timesteps = 16 model = Sequential() model.add(TimeDistributedConvolution2D(32, 5, 5, border_mode='same', input_shape=(n_timesteps, 28, 28))) model.add(TimeDistributedMaxPooling2D(pool_size=(nb_pool, nb_pool))) model.add(Activation('relu')) model.add(TimeDistributedFlatten()) model.add(LSTM(256, return_sequences=True)) model.add(TimeDistributedDense(nb_classes)) model.add(Activation('softmax')) the above code...