(self)
| 63 | self.cbs = cbs |
| 64 | |
| 65 | def _setup_graph(self): |
| 66 | with tf.name_scope(None): # clear the name scope |
| 67 | for cb in self.cbs: |
| 68 | cb.setup_graph(self.trainer) |
| 69 | |
| 70 | def _before_train(self): |
| 71 | for cb in self.cbs: |
nothing calls this directly
no test coverage detected