Searched refs:current_global_step (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/contrib/testing/python/framework/ |
D | fake_summary_writer.py | 98 def add_summary(self, summ, current_global_step): argument 104 if current_global_step in self._summaries: 105 step_summaries = self._summaries[current_global_step] 108 self._summaries[current_global_step] = step_summaries
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/ |
D | graph_actions.py | 456 def _write_summary_results(output_dir, eval_results, current_global_step): argument 458 logging.info('Saving evaluation summary for step %d: %s', current_global_step, 473 summary_writer.add_summary(summary, current_global_step) 567 current_global_step = session.run(global_step_tensor) 575 else str(max_steps), current_global_step) 626 _write_summary_results(output_dir, eval_results, current_global_step) 628 return eval_results, current_global_step
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/ |
D | estimator.py | 338 def _write_dict_to_summary(output_dir, dictionary, current_global_step): argument 346 logging.info('Saving dict for global step %d: %s', current_global_step, 388 summary_writer.add_summary(summary_proto, current_global_step) 940 current_global_step = eval_results[global_step_key] 942 _write_dict_to_summary(eval_dir, eval_results, current_global_step) 944 return eval_results, current_global_step
|
/external/tensorflow/tensorflow/contrib/distribute/python/ |
D | estimator_training_test.py | 124 current_global_step = e.step 125 if global_step_count is None or current_global_step > global_step_count: 126 global_step_count = current_global_step
|