Report. Args: model: Model instance or model name. eidx: TODO. device: Target device ("cuda:0", "cpu", etc.).
(self, model, eidx, device)
| 92 | self.max_n_speaker = max_n_speaker |
| 93 | |
| 94 | def report(self, model, eidx, device): |
| 95 | """Report. |
| 96 | |
| 97 | Args: |
| 98 | model: Model instance or model name. |
| 99 | eidx: TODO. |
| 100 | device: Target device ("cuda:0", "cpu", etc.). |
| 101 | """ |
| 102 | self.report_val(model, eidx, device) |
| 103 | |
| 104 | def report_val(self, model, eidx, device): |
| 105 | """Report val. |
nothing calls this directly
no test coverage detected