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教程(2)Tensorflow的常用函式介紹函式
- [譯] TensorFlow 教程 – 07 Inception 模型模型
- Tensorflow快餐教程(9)-卷積卷積
- Tensorflow GPU版本安裝教程GPU
- Tensorflow快餐教程(4) - 矩陣矩陣
- tensorflow的各種坑 tensorflow1.x 與 tensorflow2.x
- [教程]一份簡單易懂的 TensorFlow 教程
- Tensorflow1.x 與 Tensorflow2.0 的區別
- 【Tensorflow_DL_Note9】Tensorflow原始碼解讀1原始碼
- [譯] TensorFlow 教程 #06 – CIFAR-10
- tensorflow教程:tf.contrib.rnn.DropoutWrapperRNNAPP
- TensorFlow2.0教程-文字分類文字分類
- Windows安裝tensorflow教程 GPU版WindowsGPU
- Tensorflow 2.x入門教程
- Tensorflow(1)IT男識別玫瑰
- TensorFlow筆記(1)——TensorFlow中的相關基本概念筆記
- [譯] TensorFlow 教程 #13 – 視覺化分析視覺化
- Tensorflow教程(前三)——邏輯迴歸邏輯迴歸
- [譯] TensorFlow 教程 #08 – 遷移學習遷移學習
- [譯] TensorFlow 教程 #15 – 風格遷移
- Tensorflow 1.x 影象分類
- Tensorflow 1.x 影像分類
- 【Tensorflow_DL_Note13】TensorFlow中資料的讀取方式(1)
- 【Tensorflow_DL_Note14】TensorFlow視覺化學習1-Tensorflow與OpenCv混合程式設計視覺化OpenCV程式設計
- TensorFlow2.0教程-使用keras訓練模型Keras模型
- TensorFlow教程和文章推薦大全 -DZone AIAI
- Tensorflow教程(前二)——多項式迴歸
- 【浪子男孩】TensorFlow-GPU版本安裝教程GPU
- TensorFlow-1: 如何識別數字
- 【Tensorflow_DL_Note6】Tensorflow實現卷積神經網路(1)卷積神經網路
- 【Tensorflow_DL_Note1】Windows下Tensorflow的安裝過程詳解Windows
- TensorFlow在Mac上的簡易安裝教程Mac
- 三月十五號 anaconda 安裝 tensorflow 教程