1. 程式人生 > >tensorflow中高階函式Experiment,Estimator,EstimatorSpec,DataSet

tensorflow中高階函式Experiment,Estimator,EstimatorSpec,DataSet

這幾個物件分別封裝了:

Estimator:封裝網路模型和引數

EstimatorSpec:具體的模型

DataSet:封裝訓練資料、評估資料、自動迭代器

Experiment:封裝了一個實驗,引數包括Estimator估算器,輸入資料等。

關於這幾個模型的一個介紹的部落格:https://zhuanlan.zhihu.com/p/29073452

github上一個程式碼例程:https://gist.github.com/peterroelants/9956ec93a07ca4e9ba5bc415b014bcca?spm=5176.100239.blogcont194302.52.iPqDIt

——————————————————————————————————————————

關於這幾個物件的關係:

Experiment:

(1)——>Estimator——>EstimatorSpec

(2)——>DataSet

——————————————————————————————————————————