(self, **kwargs)
| 657 | |
| 658 | class Sampler(Protocol): |
| 659 | def prepare(self) -> "Sampler": |
| 660 | raise NotImplementedError() |
| 661 | |
| 662 | def sample(self, **kwargs) -> torch.Tensor: |
| 663 | raise NotImplementedError() |
nothing calls this directly
no outgoing calls
no test coverage detected