[toc]算法
TensorFlow構建圖主要經過三個模式函數:inference()
, loss()
, train()
函數
構建圖,返回包含預測結果的tensorlua
inference()
構建的圖上添加loss op,以inference()
的返回爲輸入之一,最終返回包含了損失值的tensorcode
training()
經過梯度降低算法最小化loss
,並返回包括了train op輸出結果的tensorio
也可添加evaluation()
函數來在圖中添加計算精確度之類的op。
通常上述的構建圖步驟寫在一個文件中,實際訓練循環寫到另外一個文件中。循環