Regression Model
We'll cover the following...
Chapter Goals:
- Create the
Estimatorobject 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 ...
Ask