train mode
(self)
| 49 | return self |
| 50 | |
| 51 | def train(self): |
| 52 | """ |
| 53 | train mode |
| 54 | """ |
| 55 | for i in self.get_processors(): |
| 56 | i.train() |
| 57 | self.is_training = True |
| 58 | return self |
| 59 | |
| 60 | def pretrain(self): |
| 61 | """ |
nothing calls this directly
no test coverage detected