(self)
| 113 | class StandardRunnerTest(parameterized.TestCase): |
| 114 | |
| 115 | def test_default_trainer(self): |
| 116 | trainer = TestTrainer() |
| 117 | self.assertEqual(trainer.train(tf.constant(10)), 10) |
| 118 | |
| 119 | def test_trainer_with_tpu_summary_optimization(self): |
| 120 | options = standard_runner.StandardTrainerOptions( |
nothing calls this directly
no test coverage detected