(log, key, value)
| 32 | |
| 33 | |
| 34 | def add_log(log, key, value): |
| 35 | if key not in log.keys(): |
| 36 | log[key] = [] |
| 37 | log[key].append(value) |
| 38 | |
| 39 | |
| 40 | def get_transforms(dataset, train=True, is_tensor=True): |
nothing calls this directly
no outgoing calls
no test coverage detected