摘要: import tensorflow as tf import numpy as np W = tf.Variable([[2,1,8],[1,2,5]], dtype=tf.float32, name='weights') b = tf.Variable([[1,2,5]], dtype=tf.float32, name='biases') init= tf.global_variabl... 阅读全文
posted @ 2018-01-25 22:05 一个处女座的程序猿 阅读(192) 评论(0) 推荐(0) 编辑
摘要: import tensorflow as tf import numpy as np W = tf.Variable(np.arange(6).reshape((2, 3)), dtype=tf.float32, name="weights") b = tf.Variable(np.arange(3).reshape((1, 3)), dtype=tf.float32, name="biase... 阅读全文
posted @ 2018-01-25 21:58 一个处女座的程序猿 阅读(164) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-01-25 21:56 一个处女座的程序猿 阅读(1) 评论(0) 推荐(0) 编辑