Called right after each epoch. Usually you should use the :meth:`trigger` callback to run something between epochs. Use this method only when something really needs to be run **immediately** after each epoch.
(self)
| 95 | self._after_epoch() |
| 96 | |
| 97 | def _after_epoch(self): |
| 98 | """ |
| 99 | Called right after each epoch. |
| 100 | Usually you should use the :meth:`trigger` callback to run something between epochs. |
| 101 | Use this method only when something really needs to be run **immediately** after each epoch. |
| 102 | """ |
| 103 | pass |
| 104 | |
| 105 | def before_run(self, ctx): |
| 106 | fetches = self._before_run(ctx) |