(self, input, get_cost_fn, get_opt_fn)
| 69 | class QueueInputTrainer(SimpleTrainer): |
| 70 | @deprecated("SimpleTrainer is sufficient!", "2019-12-31") |
| 71 | def _setup_graph(self, input, get_cost_fn, get_opt_fn): |
| 72 | assert isinstance(input, QueueInput), input |
| 73 | return super(QueueInputTrainer, self)._setup_graph(input, get_cost_fn, get_opt_fn) |
| 74 | |
| 75 | |
| 76 | class SyncMultiGPUTrainerParameterServer(SingleCostTrainer): |
nothing calls this directly
no test coverage detected