na

Results 2 comments of na

Hi all, Following https://keras.io/layers/core/#masking, I suggest to modify the following lines in SimpleSeq2Seq (lines 66 to 68): `for _ in range(1, depth[0]): encoder.add(Dropout(dropout)) encoder.add(LSTMCell(hidden_dim, **kwargs))` into `for _ in range(1,...

As mentioned in #24 , I tried to pickle my model: `model = Seq2Seq()` `model.compile(loss='categorical_crossentropy', optimizer='rmsprop')` `with open(path, 'w') as f:` `pkl.dump(model, f)` but I get the following error: `pickle.PicklingError:...