stanford-tensorflow-tutorials
stanford-tensorflow-tutorials copied to clipboard
This repository contains code examples for the Stanford's course: TensorFlow for Deep Learning Research.
(tensorflow) C:\Users\Sagar\stanford-tensorflow-tutorials\2017\assignments\chatbot>python data.py Preparing raw data into train set and test set ... Traceback (most recent call last): File "data.py", line 255, in prepare_raw_data() File "data.py", line 178, in prepare_raw_data...
Say i want model to get train on same voc and train made from cornel plus to train on my onv conversations from bot. maybe there is some recommendations how...
Bug: Loss redefined twice for different variables Fix: The second loss variable is renamed
In README.md of `stanford-tensorflow-tutorials/assignments/chatbot/` directory. The hyper-link https://github.com/tensorflow/models/blob/master/tutorials/rnn/translate/ is not currently in working state. Same problem duplicated in chatbot.py comments.
I am trying to train the model by running chatbot.py file. I am using AWS GPU p2.xlarge (61GB Mem, ubuntu 16) instance. Its been 19hrs and I am wondering if...
Not working(Errror : 404) Piazza link at first instance updated.
def huber_loss(labels, predictions, delta=1.0): residual = tf.abs(labels - predictions) def f1(): return 0.5 * tf.square(residual) def f2(): return delta * residual - 0.5 * tf.square(delta) return tf.cond(residual < delta, f1,...
Hi Hadi, I use Python 2.7.13 and Tensorflow 1.3.0 on CPU. I want to use DensNet( [https://github.com/pudae/tensorflow-densenet](url) ) for regression problem. My data contains 60000 jpeg images with 37 float...