Disabled for pipeline parallel training. See ``train_batch()``.
(self, *args, **kwargs)
| 1309 | raise PipelineError("Only train_batch() is accessible in pipeline mode.") |
| 1310 | |
| 1311 | def step(self, *args, **kwargs): |
| 1312 | """Disabled for pipeline parallel training. See ``train_batch()``. """ |
| 1313 | raise PipelineError("Only train_batch() is accessible in pipeline mode.") |
| 1314 | |
| 1315 | def module_state_dict(self, exclude_frozen_parameters=False): |
| 1316 | """Override hack to save a pipe model and return the directory path of the save. |
nothing calls this directly
no test coverage detected