stanford-tensorflow-tutorials
                                
                                 stanford-tensorflow-tutorials copied to clipboard
                                
                                    stanford-tensorflow-tutorials copied to clipboard
                            
                            
                            
                        This repository contains code examples for the Stanford's course: TensorFlow for Deep Learning Research.
I hv trouble in running the chatbot.py, is it because of the tensorflow version? how to fix it? python chatbot.py --mode train Data ready! Bucketing conversation number 9999 Bucketing conversation...
self.outputs, self.losses = tf.nn.seq2seq.model_with_buckets( self.encoder_inputs, self.decoder_inputs, self.targets, self.decoder_masks, config.BUCKETS, lambda x, y: _seq2seq_f(x, y, False), softmax_loss_function=self.softmax_loss_function) what function we can replace with tf.nn.seq2seq.model_with_buckets? thanks
I have a question, we use dataset api to run code in train and val preoces, in every epoch we run the corresponding initializer but in this way, every epoch...
This is the trouble I'm facing when I run the chatbot.py file. Any idea on what should I do. When I downloaded the file and I'm running it this is...
`download_url = os.path.join(path, filename)` will not work on windows machines. `path` and `filename` are connected via a forward slash, which does not constitute a valid URL.
i used python3.5 and tensorflow1.3 , I got below error while running data.py I tried to edit random.py but it's read only File "/usr/lib/python3.5/random.py", line 324, in sample raise ValueError("Sample...
I am sorry about that I can`t find the PPT about the tutorials.anyone can give me or tell me where it is. beg your answer and sincerely thank you
Added the procedure to create the virtual environment with pip for users that use Anaconda. Tested on Xubuntu 16.04
The current example MNIST code has this line in it: ``` accuracy_batch = sess.run([accuracy], feed_dict={X: X_batch, Y:Y_batch}) ``` This gives error (attempting to add a `list` to an `int`): ```...