Regression Model

Chapter Goals:

  • Create the Estimator object for the regression model

A.Estimator object

The entire regression model, from training to evaluation to predictions, can be encapsulated in a single Estimator object. The Estimator object is initialized with the regression function, as well as a few keyword arguments.

One of the keyword arguments is model_dir, which ...