eval mode
(self)
| 40 | return NotImplementedError |
| 41 | |
| 42 | def eval(self): |
| 43 | """ |
| 44 | eval mode |
| 45 | """ |
| 46 | for i in self.get_processors(): |
| 47 | i.eval() |
| 48 | self.is_training = False |
| 49 | return self |
| 50 | |
| 51 | def train(self): |
| 52 | """ |
nothing calls this directly
no test coverage detected