(self)
| 683 | "eval_loss", os.path.join(self.model_dir, "summaries/eval"))) |
| 684 | |
| 685 | def test_evaluate_with_no_output(self): |
| 686 | test_controller = controller.Controller( |
| 687 | evaluator=TestEvaluatorNoOutput(), |
| 688 | global_step=tf.Variable(0, dtype=tf.int64), |
| 689 | eval_summary_dir=os.path.join(self.model_dir, "summaries/eval")) |
| 690 | self.assertSameElements(["steps_per_second"], |
| 691 | test_controller.evaluate(steps=5).keys()) |
| 692 | |
| 693 | def test_train_and_evaluate_reset_datasets(self): |
| 694 | test_runner = TestRunner() |
nothing calls this directly
no test coverage detected