Chien Tran

Results 3 comments of Chien Tran

It does not work on my Sublime (build 3103). Any idea why? @fnky

I forgot this. Perhaps I was not able to resolve the issue

I am having a problem training a sequence-to-sequence model. I set up a simple model like this: ``` model = Seq2seq( batch_input_shape=(BATCH_SIZE, INPUT_SEQUENCE_LENGTH, TOKEN_REPRESENTATION_SIZE), output_dim=len(target_index_to_token), hidden_dim=HIDDEN_LAYER_DIMENSION, output_length=OUTPUT_SEQUENCE_LENGTH, depth=1) model.compile(loss='categorical_crossentropy', optimizer='sgd',...