(self, zs)
| 655 | ] |
| 656 | |
| 657 | def decode(self, zs): |
| 658 | with amp.autocast(dtype=self.dtype): |
| 659 | return [ |
| 660 | self.model.decode(u.unsqueeze(0), |
| 661 | self.scale).float().clamp_(-1, 1).squeeze(0) |
| 662 | for u in zs |
| 663 | ] |
no outgoing calls
no test coverage detected