Window7下tensorboard簡單使用

先貼一段簡單的代碼,實現的是y = wx + b # -*- coding: UTF-8 -*- # 引入tensorflow import tensorflow as tf # 構造圖(Graph)的結構 # 用一個線性方程的例子 y = W * x + b W = tf.Variable(2.0, dtype=tf.float32, name="Weight") # 權重 b = tf.
相關文章
相關標籤/搜索