Sets the model in evaluation mode.
(self)
| 217 | autograd.training = mode |
| 218 | |
| 219 | def eval(self): |
| 220 | """Sets the model in evaluation mode. |
| 221 | """ |
| 222 | self.train(mode=False) |
| 223 | |
| 224 | def graph(self, mode=True, sequential=False): |
| 225 | """ Turn on the computational graph. Specify execution mode. |