Home | History | Annotate | Download | only in estimators

Lines Matching defs:predict

499   def predict(self, x=None, input_fn=None, batch_size=None, outputs=None,
510 outputs: list of `str`, name of the output to predict.
529 return super(LinearClassifier, self).predict(
558 preds = super(LinearClassifier, self).predict(
589 preds = super(LinearClassifier, self).predict(
628 Train a linear regression model to predict label value given observation of
649 estimator.predict(x=x)
766 def predict(self, x=None, input_fn=None, batch_size=None, outputs=None,
777 outputs: list of `str`, name of the output to predict.
796 return super(LinearRegressor, self).predict(
825 preds = super(LinearRegressor, self).predict(
863 Train a generalized linear model to predict label value given observation of
886 estimator.predict(x=x)