Neural_Conversation_Models
Neural_Conversation_Models copied to clipboard
Tensorflow based Neural Conversation Models
Hi , thanks for sharing code. i have some queries. is this model handling some common issues related to seq2seq model on chatbot like replying generic responses (ex: 'Okay','No','Yes'..) and...
> hello Replies ---------------------------------------> pcm-2 socah pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 socah pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2 pcm-2...
I'm using win10 system and python3.x tf0.12 It turns out in function `beam_attention_decoder` the sentence ``` outputs.append(tf.argmax(nn_ops.xw_plus_b( output, output_projection[0], output_projection[1]), dimension=1)) ``` should be `outputs.append(output) ` or the shape doesn't...
**else: if beam_search: return outputs[0], outputs[1], outputs[2:] # No gradient norm, loss, outputs.** I have a doubt here: why are you returning 3 values, when the comment says just 2...
I'm running on tensorflow 1.2.0-rc2 and got thie following error: File "......\my_seq2seq.py", line 48, in from tensorflow.python.ops.rnn_cell import _linear as linear ImportError: cannot import name '_linear' It also added: AttributeError:...
Hi,i am new to this deep learning i am trying to execute train.py obtained from [https://github.com/jocicmarko/ultrasound-nerve-segmentation/train.py](url) Any body there to help fix this problem, the error is in line ``...
Hi, I'm trying to get access to the logit scores of the reply variants produced by the beam search. I was expecting the variable 'output_logits' produced by the model.step function...