(self, net)
| 457 | raise NotImplementedError |
| 458 | |
| 459 | def add_eval_ops(self, net): |
| 460 | # Default eval layer implementation is completely matching |
| 461 | # predict layer implementation. |
| 462 | self.add_ops(net) |
| 463 | |
| 464 | def add_train_ops(self, net): |
| 465 | # Default train layer implementation is completely matching |
no test coverage detected