1. 程式人生 > >tensorflow學習筆記(北京大學) tf3_1.py 完全解析

tensorflow學習筆記(北京大學) tf3_1.py 完全解析

#coding:utf-8
#tensorflow學習筆記(北京大學) tf3_1.py 完全解析
#QQ群:476842922
import tensorflow as tf       #引入模組 
a = tf.constant([1.0, 2.0])   #定義一個張量等於[1.0,2.0] 
b = tf.constant([3.0, 4.0])   #定義一個張量等於[3.0,4.0] 
result = a+b                  #實現 a 加 b 的加法 
print result                  #打印出結果 

Tensor(“add:0”, shape=(2,), dtype=float32)