Given records from a run, return a {val_acc, test_acc} dict representing the best val-acc and corresponding test-acc for that run.
(self, run_records)
| 17 | |
| 18 | @classmethod |
| 19 | def run_acc(self, run_records): |
| 20 | """ |
| 21 | Given records from a run, return a {val_acc, test_acc} dict representing |
| 22 | the best val-acc and corresponding test-acc for that run. |
| 23 | """ |
| 24 | raise NotImplementedError |
| 25 | |
| 26 | @classmethod |
| 27 | def hparams_accs(self, records): |