r"""Sets training mode of all the modules within this module (including itself) to ``False``. See :meth:`~.Module.train` for details.
(self)
| 409 | self.apply(fn) |
| 410 | |
| 411 | def eval(self) -> None: |
| 412 | r"""Sets training mode of all the modules within this module (including itself) to |
| 413 | ``False``. See :meth:`~.Module.train` for details. |
| 414 | """ |
| 415 | self.train(False) |
| 416 | |
| 417 | def disable_quantize(self, value=True): |
| 418 | r"""Sets ``module``'s ``quantize_disabled`` attribute and return ``module``. |