DeepLearning_Demo
DeepLearning_Demo copied to clipboard
深度学习入门的一些简单例子
为什么运行BP算法之后,提示有错误? ValueError: not enough values to unpack (expected 2, got 0)
请问一下,这里运行正常但是无法识别到model.ckpt,每次都重新训练,是怎么回事
我目前使用该代码用了好几种tensorflow版本好像都报错了,希望可以告知一下您的代码使用的tensorflow的版本,感谢!
rt according to tensorflow.org
the loss function you use here is: ``` def loss_with_spring(self): margin = 5.0 labels_t = self.y_ labels_f = tf.subtract(1.0, self.y_, name="1-yi") # labels_ = !labels; eucd2 = tf.pow(tf.subtract(self.o1, self.o2), 2)...