Searched refs:ProblemType (Results 1 – 19 of 19) sorted by relevance
/external/tensorflow/tensorflow/contrib/learn/python/learn/utils/ |
D | saved_model_export_utils_test.py | 84 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 …]
|
D | saved_model_export_utils.py | 153 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/ |
D | model_fn_test.py | 92 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 …]
|
D | dynamic_rnn_estimator_test.py | 192 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 …]
|
D | model_fn.py | 253 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:
|
D | dynamic_rnn_estimator.py | 292 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:
|
D | state_saving_rnn_estimator.py | 453 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:
|
D | rnn_common.py | 159 if problem_type == constants.ProblemType.CLASSIFICATION: 172 elif problem_type == constants.ProblemType.LINEAR_REGRESSION: 302 if problem_type == constants.ProblemType.CLASSIFICATION
|
D | state_saving_rnn_estimator_test.py | 346 problem_type=constants.ProblemType.CLASSIFICATION, 416 constants.ProblemType.CLASSIFICATION, 498 constants.ProblemType.LINEAR_REGRESSION, 555 constants.ProblemType.CLASSIFICATION, 638 constants.ProblemType.CLASSIFICATION,
|
D | constants.py | 27 class ProblemType(object): class
|
D | head_test.py | 102 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 …]
|
D | logistic_regressor.py | 69 'head': (constants.ProblemType.LOGISTIC_REGRESSION, {
|
D | __init__.py | 301 from tensorflow.contrib.learn.python.learn.estimators.constants import ProblemType
|
D | head.py | 718 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/ |
D | target_column.py | 128 class ProblemType(object): class 272 problem_type=ProblemType.LINEAR_REGRESSION) 302 problem_type=ProblemType.CLASSIFICATION)
|
/external/tensorflow/tensorflow/contrib/boosted_trees/estimator_batch/ |
D | estimator_utils.py | 55 output[key] = (constants.ProblemType.CLASSIFICATION,
|
/external/tensorflow/tensorflow/contrib/predictor/ |
D | testing_common.py | 67 output_alternatives = {k: (constants.ProblemType.UNSPECIFIED, {k: v})
|
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/ |
D | estimator_test.py | 42 None: constants.ProblemType.LINEAR_REGRESSION
|
/external/tensorflow/tensorflow/contrib/tensor_forest/client/ |
D | random_forest.py | 289 constants.ProblemType.UNSPECIFIED, model_ops.predictions)
|