(file_name: str)
| 96 | pickle.dump(list_info, f) |
| 97 | |
| 98 | def read_pickle(file_name: str) -> list: |
| 99 | with open(file_name, 'rb') as f: |
| 100 | info_list = pickle.load(f) |
| 101 | return info_list |
| 102 | |
| 103 | |
| 104 | def train_one_epoch(model, optimizer, data_loader, device, epoch): |
nothing calls this directly
no outgoing calls
no test coverage detected