摘要:
需要注意的是我们可以使用两种方法来创建并使用session 方法一: sess = tf.Session() result = sess.run(...,feed_dict = {...}) sess.close() 方法二: with tf.Session as sess: result = se 阅读全文
摘要:
1.1 训练——开发——测试集 经验法则: Make sure dev and test come from same distribution 1.2 偏差_方差 1.4 Logistic regression 为什么只正则化参数w,为什么不再加上参数b呢? 因为w通常是一个高维参数矢量,已经可以 阅读全文