(self)
| 95 | self.relabs = [] |
| 96 | |
| 97 | def aggregate(self): |
| 98 | delta1 = torch.stack(self.delta1s).mean() |
| 99 | relabs = torch.stack(self.relabs).mean() |
| 100 | out = dict(delta1=delta1, relabs=relabs) |
| 101 | return out |
nothing calls this directly
no outgoing calls
no test coverage detected