tensorflow教程五 线性回归实例

我看的教程:https://www.guru99.com/linear-regression-tensorflow.html

两种API:

  • Low-level API: Build the architecture, optimization of the model from scratch. It is complicated for a beginner
  • High-level API: Define the algorithm. It is easer-friendly. TensorFlow provides a toolbox calls estimator to construct, train, evaluate and make a prediction.

 

6个estimator:

  • Regressor
    • DNNRegressor
    • LinearRegressor
    • DNNLineaCombinedRegressor
  • Classifier
    • DNNClassifier
    • LinearClassifier
    • DNNLineaCombinedClassifier

你可能感兴趣的:(tensorflow)