(self, records)
| 132 | |
| 133 | @classmethod |
| 134 | def run_acc(self, records): |
| 135 | step_accs = records.group('step').map(lambda step, step_records: |
| 136 | self._step_acc(step_records) |
| 137 | ).filter_not_none() |
| 138 | if len(step_accs): |
| 139 | return step_accs.argmax('val_acc') |
| 140 | else: |
| 141 | return None |
nothing calls this directly
no test coverage detected