Home
last modified time | relevance | path

Searched refs:ProblemType (Results 1 – 19 of 19) sorted by relevance

/external/tensorflow/tensorflow/contrib/learn/python/learn/utils/
Dsaved_model_export_utils_test.py84 problem_type = constants.ProblemType.LINEAR_REGRESSION
115 problem_type = constants.ProblemType.CLASSIFICATION
155 problem_type = constants.ProblemType.CLASSIFICATION
201 problem_type = constants.ProblemType.CLASSIFICATION
244 problem_type = constants.ProblemType.CLASSIFICATION
288 problem_type = constants.ProblemType.CLASSIFICATION
329 problem_type = constants.ProblemType.CLASSIFICATION
372 "head-1": (constants.ProblemType.LINEAR_REGRESSION,
374 "head-2": (constants.ProblemType.CLASSIFICATION, "bogus output dict 2"),
375 "head-3": (constants.ProblemType.UNSPECIFIED, "bogus output dict 3"),
[all …]
Dsaved_model_export_utils.py153 return ((problem_type == constants.ProblemType.CLASSIFICATION or
154 problem_type == constants.ProblemType.LOGISTIC_REGRESSION) and
161 return (problem_type == constants.ProblemType.LINEAR_REGRESSION and
225 default_problem_type = constants.ProblemType.UNSPECIFIED
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
Dmodel_fn_test.py92 constants.ProblemType.LINEAR_REGRESSION, predictions)}
111 constants.ProblemType.LINEAR_REGRESSION,
129 constants.ProblemType.CLASSIFICATION, predictions)}
151 constants.ProblemType.CLASSIFICATION, output_alternatives_predictions)}
174 constants.ProblemType.CLASSIFICATION, output_alternatives_predictions)}
195 constants.ProblemType.CLASSIFICATION, output_alternatives_predictions)}
217 constants.ProblemType.CLASSIFICATION, output_alternatives_predictions)}
236 constants.ProblemType.LOGISTIC_REGRESSION, predictions)}
255 constants.ProblemType.UNSPECIFIED, predictions)}
273 constants.ProblemType.LINEAR_REGRESSION, predictions),
[all …]
Ddynamic_rnn_estimator_test.py192 constants.ProblemType.CLASSIFICATION,
197 (constants.ProblemType.CLASSIFICATION,
202 constants.ProblemType.LINEAR_REGRESSION,
207 (constants.ProblemType.LINEAR_REGRESSION,
211 constants.ProblemType.CLASSIFICATION,
255 problem_type=constants.ProblemType.CLASSIFICATION,
286 problem_type=constants.ProblemType.CLASSIFICATION,
393 problem_type=constants.ProblemType.CLASSIFICATION,
449 problem_type=constants.ProblemType.CLASSIFICATION,
546 problem_type=constants.ProblemType.LINEAR_REGRESSION,
[all …]
Dmodel_fn.py253 if problem_type == constants.ProblemType.LINEAR_REGRESSION:
256 if (problem_type == constants.ProblemType.CLASSIFICATION or
257 problem_type == constants.ProblemType.LOGISTIC_REGRESSION):
261 if problem_type == constants.ProblemType.UNSPECIFIED:
Ddynamic_rnn_estimator.py292 if problem_type == constants.ProblemType.CLASSIFICATION
462 if problem_type not in (constants.ProblemType.CLASSIFICATION,
463 constants.ProblemType.LINEAR_REGRESSION):
474 if (problem_type != constants.ProblemType.CLASSIFICATION
666 if problem_type == constants.ProblemType.LINEAR_REGRESSION:
669 elif problem_type == constants.ProblemType.CLASSIFICATION:
Dstate_saving_rnn_estimator.py453 if problem_type not in (constants.ProblemType.CLASSIFICATION,
454 constants.ProblemType.LINEAR_REGRESSION):
459 if (problem_type != constants.ProblemType.CLASSIFICATION and
623 if problem_type == constants.ProblemType.LINEAR_REGRESSION:
626 elif problem_type == constants.ProblemType.CLASSIFICATION:
Drnn_common.py159 if problem_type == constants.ProblemType.CLASSIFICATION:
172 elif problem_type == constants.ProblemType.LINEAR_REGRESSION:
302 if problem_type == constants.ProblemType.CLASSIFICATION
Dstate_saving_rnn_estimator_test.py346 problem_type=constants.ProblemType.CLASSIFICATION,
416 constants.ProblemType.CLASSIFICATION,
498 constants.ProblemType.LINEAR_REGRESSION,
555 constants.ProblemType.CLASSIFICATION,
638 constants.ProblemType.CLASSIFICATION,
Dconstants.py27 class ProblemType(object): class
Dhead_test.py102 None: constants.ProblemType.LINEAR_REGRESSION
137 None: constants.ProblemType.LINEAR_REGRESSION
345 None: constants.ProblemType.CLASSIFICATION
551 constants.ProblemType.CLASSIFICATION,
735 None: constants.ProblemType.LOGISTIC_REGRESSION
856 constants.ProblemType.LOGISTIC_REGRESSION,
1054 None: constants.ProblemType.CLASSIFICATION
1355 constants.ProblemType.CLASSIFICATION,
1407 constants.ProblemType.CLASSIFICATION,
1478 None: constants.ProblemType.LOGISTIC_REGRESSION
[all …]
Dlogistic_regressor.py69 'head': (constants.ProblemType.LOGISTIC_REGRESSION, {
D__init__.py301 from tensorflow.contrib.learn.python.learn.estimators.constants import ProblemType
Dhead.py718 problem_type=constants.ProblemType.LINEAR_REGRESSION,
841 problem_type=constants.ProblemType.LOGISTIC_REGRESSION,
1035 problem_type=constants.ProblemType.CLASSIFICATION,
1243 problem_type=constants.ProblemType.LOGISTIC_REGRESSION,
1337 problem_type=constants.ProblemType.CLASSIFICATION,
/external/tensorflow/tensorflow/contrib/layers/python/layers/
Dtarget_column.py128 class ProblemType(object): class
272 problem_type=ProblemType.LINEAR_REGRESSION)
302 problem_type=ProblemType.CLASSIFICATION)
/external/tensorflow/tensorflow/contrib/boosted_trees/estimator_batch/
Destimator_utils.py55 output[key] = (constants.ProblemType.CLASSIFICATION,
/external/tensorflow/tensorflow/contrib/predictor/
Dtesting_common.py67 output_alternatives = {k: (constants.ProblemType.UNSPECIFIED, {k: v})
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
Destimator_test.py42 None: constants.ProblemType.LINEAR_REGRESSION
/external/tensorflow/tensorflow/contrib/tensor_forest/client/
Drandom_forest.py289 constants.ProblemType.UNSPECIFIED, model_ops.predictions)