tensorflow基礎知識學習

一:基礎單位 張量:多維數組(列表) 階:表示張量的維度 標量:0階數組 例子:s=1,2,3 向量:1階數組 例子:v=[1,2,3] 矩陣:2階數組 例子:m=[[1,2,3],[4,5,6],[7,8,9]] 張量:n階 例子:t=[[…n個 二:簡單的實現代碼 import tensorflow as tf x = tf.constant([[1.0,2.0]]) w = tf.cons
相關文章
相關標籤/搜索