(file_name: str)
| 110 | |
| 111 | |
| 112 | def read_pickle(file_name: str) -> list: |
| 113 | with open(file_name, 'rb') as f: |
| 114 | info_list = pickle.load(f) |
| 115 | return info_list |
| 116 | |
| 117 | |
| 118 | def train_one_epoch(model, optimizer, data_loader, device, epoch): |
nothing calls this directly
no outgoing calls
no test coverage detected