(self, state_dict: dict)
| 46 | random.shuffle(self._filenames) |
| 47 | |
| 48 | def load_state_dict(self, state_dict: dict): |
| 49 | for key, val in state_dict.items(): |
| 50 | self.state_dict[key] = val |
| 51 | |
| 52 | def __iter__(self): |
| 53 | worker_info = get_worker_info() |
no outgoing calls
no test coverage detected