blindfish
blindfish
This part of the code: ``` # Create the training and inference logits train_logits, inference_logits = seq2seq_model( tf.reverse(input_data, [-1]), targets, keep_prob, batch_size, sequence_length, len(answers_vocab_to_int), len(questions_vocab_to_int), encoding_embedding_size, decoding_embedding_size, rnn_size, num_layers, questions_vocab_to_int)...
Getting this error when trying to run this code. Any ideas on how to fix? ``` --------------------------------------------------------------------------- ImportError Traceback (most recent call last) in () ----> 1 import generate 2...