TensorFlow estimators

TensorFlow estimators allow you to build TensorFlow models using a simpler API interface. In R, the tfestimators package allows you to call this API. There are different model types, including linear models and neural networks. The following estimators are available:

  • linear_regressor() for linear regression
  • linear_classifier() for linear classification
  • dnn_regressor() for deep neural network regression
  • dnn_classifier() for deep neural network classification
  • dnn_linear_combined_regressor() for deep neural network linear combined regression
  • dnn_linear_combined_classifier() for deep neural network linear combined classification

Estimators hide a lot of the detail in creating a deep learning model, including building the ...

Get Deep Learning with R for Beginners now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.