/external/tensorflow/tensorflow/contrib/learn/python/learn/ |
graph_actions.py | 446 def _eval_results_to_str(eval_results): 447 return ', '.join('%s = %s' % (k, v) for k, v in sorted(eval_results.items())) 450 def _write_summary_results(output_dir, eval_results, current_global_step): 453 _eval_results_to_str(eval_results)) 456 for key in eval_results: 457 if eval_results[key] is None: 461 if (isinstance(eval_results[key], np.float32) or 462 isinstance(eval_results[key], float)): 463 value.simple_value = float(eval_results[key]) 518 A tuple `(eval_results, global_step)` [all...] |
experiment.py | 52 def _pred_fn_wrapper(eval_results, checkpoint_path): 53 return predicate_fn(eval_results) 463 * (eval_results) -> boolean 464 * (eval_results, checkpoint_path) -> boolean 465 Where `eval_results` is the dictionary of metric evaluations and 468 At the beginning of evaluation, the passed `eval_results` will be None 709 * (eval_results) -> boolean 710 * (eval_results, checkpoint_path) -> boolean 711 Where `eval_results` is the dictionary of metric evaluations and 714 At the beginning of evaluation, the passed `eval_results` an [all...] |
/external/tensorflow/tensorflow/examples/tutorials/layers/ |
cnn_mnist.py | 154 eval_results = mnist_classifier.evaluate(input_fn=eval_input_fn) 155 print(eval_results)
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/ |
estimator.py | 582 eval_results, global_step = self._evaluate_model( 592 if eval_results is not None: 593 eval_results.update({'global_step': global_step}) 594 return eval_results [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_ast.py | 147 (eval_tests, eval_results, "eval")):
362 eval_results = [
variable
|
/external/tensorflow/tensorflow/python/estimator/ |
estimator.py | [all...] |
training_test.py | [all...] |
/external/python/cpython2/Lib/test/ |
test_ast.py | 217 (eval_tests, eval_results, "eval")): 553 eval_results = [ variable
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_ast.py | 217 (eval_tests, eval_results, "eval")): 553 eval_results = [ variable
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_ast.py | 217 (eval_tests, eval_results, "eval")): 553 eval_results = [ variable
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ast.py | 217 (eval_tests, eval_results, "eval")): 553 eval_results = [ variable
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ast.py | 217 (eval_tests, eval_results, "eval")): 553 eval_results = [ variable
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/utils/ |
saved_model_export_utils.py | 577 By default, eval_results contains 'loss' field. 585 ValueError: if eval_results is None object. [all...] |
/external/tensorflow/tensorflow/docs_src/tutorials/ |
layers.md | 678 eval_results = mnist_classifier.evaluate(input_fn=eval_input_fn) 679 print(eval_results)
|
/external/python/cpython3/Lib/test/ |
test_ast.py | 238 (eval_tests, eval_results, "eval")): 1134 eval_results = [ variable [all...] |