變數不執行,只列印行列引數,sess.run(a)列印出變數實際內容
y=[[int(x0+x1<1)] for (x0,x1) in x],這樣能夠判斷x生成的資料兩個數的和小於1,那麼y就是1,否則是0
rng=np.random.randomstate(seed)
x=rng.rand(32,2) 生成32行2列0~1之間隨機數
tf.random_normal(shape=[2,1],stddev=1,seed=1)生成2行1列正態分佈隨機數,標準差為1,種子1保證每次生成的隨機數相同
x和y_用placeholder,後面loss函式需要y和y_,y來自x與w1的矩陣乘,y_來自y準確答案庫,故feed_dict=。前面用placeholder代替的位置,後面用feed_dict餵給網路。
h=[1,2,3,4,5] h[3:5]表示切片3與4位置,#[4,5]從0計數
當我現在努力完成了一些成就,過年放烟花的時候也能夠靠著門窗,高高興興的看看烟花
TensorFlow基礎知識
從helloword開始 mkdir mooc 新建乙個mooc資料夾 cd mooc mkdir 1.helloworld 新建乙個helloworld資料夾 cd 1.helloworld touch helloworld.py coding utf 8 引入 tensorflow 庫 impo...
TensorFlow基礎知識
title tensorflow基礎知識 date 2018 03 31 14 13 12 categories tensorflow是乙個採用資料流圖 data flow graphs 用於數值計算的開源軟體庫。下圖就是乙個資料流圖。資料流圖是乙個用來描述數學計算的由 結點 nodes 和 線 e...
TensorFlow基礎知識彙總
一 constant 常量 constant是tensorflow的常量節點,通過constant方法建立,其是計算圖 computational graph 中的起始節點,是傳入資料。建立方式 cons tf.constant value 1,2 dtype tf.float32,shape 1,...