HomeSort by relevance Sort by last modified time
    Searched refs:LinearRegressor (Results 1 - 14 of 14) sorted by null

  /external/tensorflow/tensorflow/contrib/learn/python/learn/utils/
export_test.py 92 regressor = learn.LinearRegressor(feature_columns=cont_features)
110 regressor = learn.LinearRegressor(feature_columns=cont_features)
131 regressor = learn.LinearRegressor(feature_columns=[_X_COLUMN])
149 regressor = learn.LinearRegressor(feature_columns=[_X_COLUMN])
173 regressor = learn.LinearRegressor(feature_columns=[_X_COLUMN])
194 regressor = learn.LinearRegressor(feature_columns=[_X_COLUMN])
218 regressor = learn.LinearRegressor(feature_columns=[_X_COLUMN])
234 regressor = learn.LinearRegressor(feature_columns=cont_features)
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
multioutput_test.py 38 regressor = learn.LinearRegressor(
regression_test.py 39 regressor = learn.LinearRegressor(
linear_test.py     [all...]
stability_test.py 94 regressor1 = linear.LinearRegressor(
102 regressor2 = linear.LinearRegressor(
linear.py 625 class LinearRegressor(estimator.Estimator):
639 estimator = LinearRegressor(
678 """Construct a `LinearRegressor` estimator object.
711 A `LinearRegressor` estimator.
752 super(LinearRegressor, self).__init__(
796 return super(LinearRegressor, self).predict(
    [all...]
__init__.py 28 * `LinearRegressor`: Uses linear model.
165 #### LinearRegressor
172 estimator = LinearRegressor(
322 from tensorflow.contrib.learn.python.learn.estimators.linear import LinearRegressor
estimator_test.py 204 est = linear.LinearRegressor(feature_columns)
    [all...]
  /external/tensorflow/tensorflow/examples/get_started/regression/
linear_regression_categorical.py 87 model = tf.estimator.LinearRegressor(feature_columns=feature_columns)
linear_regression.py 15 """Linear regression using the LinearRegressor Estimator."""
63 model = tf.estimator.LinearRegressor(feature_columns=feature_columns)
  /external/tensorflow/tensorflow/contrib/estimator/python/estimator/
extenders_test.py 171 estimator = linear.LinearRegressor([fc.numeric_column('x')])
185 estimator = linear.LinearRegressor([fc.numeric_column('x')])
201 estimator = linear.LinearRegressor([fc.numeric_column('x')])
214 estimator = linear.LinearRegressor([fc.numeric_column('x')])
219 estimator = linear.LinearRegressor([fc.numeric_column('x')])
228 estimator = linear.LinearRegressor([fc.numeric_column('x')])
248 estimator = linear.LinearRegressor([fc.numeric_column('x')])
  /external/tensorflow/tensorflow/python/estimator/
estimator_lib.py 29 from tensorflow.python.estimator.canned.linear import LinearRegressor
60 'LinearRegressor',
  /external/tensorflow/tensorflow/python/estimator/canned/
linear.py 327 @tf_export('estimator.LinearRegressor')
328 class LinearRegressor(estimator.Estimator):
342 estimator = LinearRegressor(
347 estimator = LinearRegressor(
394 """Initializes a `LinearRegressor` instance.
441 super(LinearRegressor, self).__init__(
linear_test.py 27 return linear.LinearRegressor(*args, **kwargs)

Completed in 382 milliseconds