Chatbot-from-Movie-Dialogue icon indicating copy to clipboard operation
Chatbot-from-Movie-Dialogue copied to clipboard

Built a simple chatbot from a sequence-to-sequence model with TensorFlow.

Results 19 Chatbot-from-Movie-Dialogue issues
Sort by recently updated
recently updated
newest added

Hi, This is the issue I'm getting after running. Here's the part of the code in which I'm getting issues. I'm using python 3.5 in anaconda and spyder. One more...

############# Buildimg the Sec2Sec model ######### # In[37]: # Creating placeholers for the inputs and the targets. def model_inputs(): inputs = tf.placeholder(tf.int32, [None, None], name = 'input') targets = tf.placeholder(tf.int32,...

thanks for the code Though i couldn't understand the purpose of removing questions and answers less than 2 words. Please explain `# Remove questions and answers that are shorter than...

Current code is not proper utilizing the benefits of trained bi-directional parameter. This change will fix this issue.

I have trained the model once but it gives same answer for all the questions , so I had to delete all the trained data and then again I had...

I am training the model and have the weights written out to checkpoint. I am not able to load the weights to test the model. Anyone have advice on how...

Question Word Ids: [84, 17, 11, 145, 223] Input Words: ['what', 'are', 'you', 'doing', 'here'] Answer Word Ids: [1, 85, 12, 2202, 2201] Response Words: ['i', 'am', 'not', '', '']...

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)...

question:what are you doing word ids: [7906,1941,8103] input words :['what','are','you','doing'] answer: word ids:[7556,7556,548,548,548,345,345,345,345,987,987,987] output words:['kick','kick','within','within','within','test','test,'test','test','process','process','process'] why I get like this,where i went wrong

#fix line 28 : error instead of errors.