Shrey75

Results 1 issues of Shrey75

It works perfectly fine with the Greedy decoder. Here is the code Tensorflow: 1.8.0 ``` encoder_emb_inp = tf.nn.embedding_lookup(embeddings, x) encoder_cell = rnn.GRUCell(rnn_size,name='encoder') encoder_outputs, encoder_state= tf.nn.dynamic_rnn(encoder_cell,encoder_emb_inp,sequence_length=len_docs,dtype=tf.float32) tiled_encoder_outputs = tf.contrib.seq2seq.tile_batch(encoder_outputs, multiplier=beam_width) tiled_sequence_length...