1. 程式人生 > >Tensorflow實戰-張量

Tensorflow實戰-張量

import tensorflow as tf
#tf.constant 是一個計算,這個計算的結果為一個張量,儲存在變數a中。
a = tf.constant([1.0,2.0],name="a")
b = tf.constant([2.0,3.0],name="b")
result = tf.add(a,b,name="add")
print (result)
'''
#輸出:
Tensor("add:0",shape=(2,),dtpye=float32)
"add:0"說明了result這個張量是計算節點"add"輸出的第一個結果
張量的第二個屬性是張量的維度(shape)
張量的第三個屬性是型別(type),每個張量會有一個唯一的型別