Join all async steps. Only useful in aysnc training.
(self)
| 57 | return self._coordinator |
| 58 | |
| 59 | def join(self): |
| 60 | """Join all async steps. Only useful in aysnc training.""" |
| 61 | if getattr(self, "_is_async", False): |
| 62 | self.coordinator_for_async().join() |
| 63 | |
| 64 | def create_train_loop_fn(self): |
| 65 | """Creates a eval loop from the given step function and options.""" |