Estimator Predict
Explore how to use TensorFlow's Estimator predict function to generate regression predictions without requiring labeled data. Understand how to return specific prediction outputs and visualize model results for industrial machine learning tasks involving regression. This lesson prepares you to apply prediction techniques effectively within scalable machine learning pipelines.
We'll cover the following...
We'll cover the following...
Chapter Goals:
- Learn how to use an
Estimatorobject to make regression predictions
A. Prediction
The Estimator object provides a function called predict, which is used for making model predictions.
Like the train and evaluate functions, predict also takes an input data ...