91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析

TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析

發布時間:2021-10-18 09:21:16 來源:億速云 閱讀:156 作者:小新 欄目:開發技術

這篇文章主要介紹了TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

一、圖

圖:數據(張量Tenrsor)+ 操作(節點Operation) (靜態)

圖可以用:1、默認圖;2、自定義圖。

1、默認圖

查看默認圖的方式:

  • 1、調用方法:tf.get_default_graph()

  • 2、查看屬性:.graph

1、調用方法查看默認圖屬性
# 方法一:調用方法
    default = tf.get_default_graph()
    print('default:', default)

TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析

2、.graph查看圖屬性
# 方法二:查看屬性
    # 查看節點屬性
    print('a的屬性:', a.graph)
    print('c的屬性:', c.graph)
    # 查看會話屬性
    print('會話sess的圖屬性:', sess.graph)

TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析

TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析

可以發現這些圖的地址都是同一個地址,是因為它們都是默認使用了默認圖。

代碼
# 查看默認圖
def View_Graph():
    # 方法一:調用方法
    default = tf.get_default_graph()
    print('default:', default)   
    # 方法二:查看屬性
    # 查看節點屬性
    print('a的屬性:', a.graph)
    print('c的屬性:', c.graph)
    # 查看會話屬性
    print('會話sess的圖屬性:', sess.graph)

2、自定義圖(創建圖)

1、創建自定義圖
# 1 創建自定義圖
    new_graph = tf.Graph()
    print(new_graph)

TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析

2、創建靜態圖
 # 2 創建靜態圖(張量和節點)
    with new_graph.as_default():
        a = tf.constant(10)
        b = tf.constant(20)
        c = a + b
        print(c)
3、開啟會話(運行)
# 3 開啟對話(運行)
    with tf.Session(graph=new_graph) as sess:
        print('c=', sess.run(c))

TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析

4、查看自定義圖
# 4 查看自定義圖
    View_Graph(a, b, c, sess)
# 查看圖
def View_Graph(a, b, c, sess):
    # 方法一:調用方法
    default = tf.get_default_graph()
    print('default:', default)
 
    # 方法二:查看屬性
    # 查看節點屬性
    print('a的屬性:', a.graph)
    print('c的屬性:', c.graph)
    # 查看會話屬性
    print('會話sess的圖屬性:', sess.graph)

TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析

代碼
# 自定義圖
def Create_myGraph():
    # 1 創建自定義圖
    new_graph = tf.Graph()
    print(new_graph)
    
    # 2 創建靜態圖(張量和節點)
    with new_graph.as_default():
        a = tf.constant(10)
        b = tf.constant(20)
        c = a + b
        print(c)
    
    # 3 開啟對話(運行)
    with tf.Session(graph=new_graph) as sess:
        print('c=', sess.run(c))
 
    # 4 查看自定義圖
    View_Graph(a, b, c, sess)

二、TensorBoard可視化

1、可視化處理

 tf.summary.FileWriter(path, graph=)
# 可視化
        tf.summary.FileWriter("C:\\Users\\Administrator\\Desktop\\summary", graph=sess.graph)            #path                                            圖

2、 打開TensorBoard

在cmd中操作:

1、先移到文件夾的前面
cd C://Users//Administrator//Desktop
2、 打開TensorBoard(從文件中獲取數據)
tensorboard --logdir=summary

TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析

3、打開給定的網址

http://localhost:6006/(cmd中給的網址)

得到可視化結果:

TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析

總代碼

import tensorflow as tf
# 創建TensorFlow框架
def Create_Tensorflow():
    # 圖(靜態)
    a = tf.constant(2)  # 數據1(張量)
    b = tf.constant(6)  # 數據2(張量)
    c = a + b  # 操作(節點)   
    # 會話(執行)
    with tf.Session() as sess:
        print('c=', sess.run(c))
        # 可視化
        tf.summary.FileWriter("C:\\Users\\Administrator\\Desktop\\summary", graph=sess.graph) 
    # 查看默認圖
    View_Graph(a, b, c, sess) 
# 查看圖
def View_Graph(a, b, c, sess):
    # 方法一:調用方法
    default = tf.get_default_graph()
    print('default:', default) 
    # 方法二:查看屬性
    # 查看節點屬性
    print('a的屬性:', a.graph)
    print('c的屬性:', c.graph)
    # 查看會話屬性
    print('會話sess的圖屬性:', sess.graph) 
# 自定義圖
def Create_myGraph():
    # 1 創建自定義圖
    new_graph = tf.Graph()
    print(new_graph)    
    # 2 創建靜態圖(張量和節點)
    with new_graph.as_default():
        a = tf.constant(10)
        b = tf.constant(20)
        c = a + b
        print(c)   
    # 3 開啟對話(運行)
    with tf.Session(graph=new_graph) as sess:
        print('c=', sess.run(c)) 
    # 4 查看自定義圖
    View_Graph(a, b, c, sess) 
if __name__ == '__main__':
    # 創建TensorFlow框架
    Create_Tensorflow() 
    # 創建自定義圖
    Create_myGraph()

感謝你能夠認真閱讀完這篇文章,希望小編分享的“TensorFlow可視化工具中TensorBoard默認圖與自定義圖的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平南县| 北票市| 崇左市| 江陵县| 博客| 会宁县| 广元市| 会理县| 凭祥市| 光山县| 南皮县| 黔西| 海南省| 庐江县| 宝山区| 武宣县| 同德县| 黄浦区| 太白县| 苏尼特左旗| 盐源县| 藁城市| 龙江县| 随州市| 达孜县| 山阴县| 宽甸| 井陉县| 英吉沙县| 涿鹿县| 宝坻区| 海兴县| 临夏市| 永德县| 湖北省| 濮阳县| 嘉荫县| 阿勒泰市| 文昌市| 故城县| 丹寨县|