class tf.contrib.learn.BaseEstimator
Abstract BaseEstimator class to train and evaluate TensorFlow models.
Concrete implementation of this class should provide the following functions:
- _get_train_ops
- _get_eval_ops
- _get_predict_ops
Estimator
implemented below is a good example of how to use this class.
Please login to continue.