tensorflow教程1
1、tf.argmax()使用方法
tf.argmax(A,1):第二個引數為1時返回矩陣中每一行最大值的索引號
import tensorflow as tf A = [[1, 3, 4, 5, 6]] B = [[1, 3, 4], [2, 4, 1]] with tf.Session() as sess: print(sess.run(tf.argmax(A, 1))) print(sess.run(tf.argmax(B, 1)))
返回:
[4]
[2 1]
tf.argmax(A,0):第二個引數為0時返回矩陣中每一列最大值的索引號
import tensorflow as tf A = [[1, 3, 4, 5, 6]] B = [[1, 3, 4], [2, 4, 1]] with tf.Session() as sess: print(sess.run(tf.argmax(A, 0))) print(sess.run(tf.argmax(B, 0)))
返回:
[0 0 0 0 0]
[1 1 0]
tf.reduce_mean()函式使用教程
# 'x' is [[1., 2.] # [3., 4.]]
tf.reduce_mean(x) ==> 2.5 #如果不指定第二個引數,那麼就在所有的元素中取平均值 tf.reduce_mean(x, 0) ==> [2., 3.] #指定第二個引數為0,則第一維的元素取平均值,即每一列求平均值 tf.reduce_mean(x, 1) ==> [1.5, 3.5] # # 指定第二個引數為1,則第二維的元素取平均值,即每一行求平均值
相關文章
- 莫煩Tensorflow教程(1~14)
- Tensorflow教程(一)
- Tensorflow教程(前言)
- Tensorflow教程(前一)
- [譯] TensorFlow 教程 #14 – DeepDream
- [譯] TensorFlow 教程 #14 - DeepDream
- Tensorflow教程(2)Tensorflow的常用函式介紹函式
- [譯] TensorFlow 教程 – 07 Inception 模型模型
- Tensorflow快餐教程(4) - 矩陣矩陣
- Tensorflow快餐教程(9)-卷積卷積
- [譯] TensorFlow 教程 - 07 Inception 模型模型
- Tensorflow GPU版本安裝教程GPU
- Tensorflow Error筆記1Error筆記
- tensorflow的各種坑 tensorflow1.x 與 tensorflow2.x
- [教程]一份簡單易懂的 TensorFlow 教程
- Tensorflow1.x 與 Tensorflow2.0 的區別
- 【Tensorflow_DL_Note9】Tensorflow原始碼解讀1原始碼
- [譯] TensorFlow 教程 #06 – CIFAR-10
- TensorFlow2.0教程-文字分類文字分類
- Windows安裝tensorflow教程 GPU版WindowsGPU
- Tensorflow 2.x入門教程
- [譯] TensorFlow 教程 #03 - PrettyTensor
- [譯] TensorFlow 教程 #06 - CIFAR-10
- [譯] TensorFlow 教程 #05 - 整合學習
- Tensorflow(1)IT男識別玫瑰
- TensorFlow筆記(1)——TensorFlow中的相關基本概念筆記
- [譯] TensorFlow 教程 #13 – 視覺化分析視覺化
- [譯] TensorFlow 教程 #15 – 風格遷移
- [譯] TensorFlow 教程 #08 – 遷移學習遷移學習
- Tensorflow教程(前三)——邏輯迴歸邏輯迴歸
- [譯] TensorFlow 教程 #15 - 風格遷移
- [譯] TensorFlow 教程 #13 - 視覺化分析視覺化
- [譯] TensorFlow 教程 #11 - 對抗樣本
- [譯] TensorFlow 教程 #09 - 視訊資料
- [譯] TensorFlow 教程 #09 – 視訊資料
- [譯] TensorFlow 教程 #08 - 遷移學習遷移學習
- [譯] TensorFlow 教程 #04 - 儲存 & 恢復
- 【Tensorflow_DL_Note13】TensorFlow中資料的讀取方式(1)