(self, net)
| 462 | self.add_ops(net) |
| 463 | |
| 464 | def add_train_ops(self, net): |
| 465 | # Default train layer implementation is completely matching |
| 466 | # eval layer implementation. |
| 467 | self.add_eval_ops(net) |
| 468 | |
| 469 | def add_ops_to_accumulate_pred(self, net): |
| 470 | # This adds operators to accumulate predictions/labels/weights. The |
no test coverage detected