(
self, features: Union[torch.Tensor, np.ndarray]
)
| 8 | |
| 9 | class IdentitySampler: |
| 10 | def run( |
| 11 | self, features: Union[torch.Tensor, np.ndarray] |
| 12 | ) -> Union[torch.Tensor, np.ndarray]: |
| 13 | return features |
| 14 | |
| 15 | |
| 16 | class BaseSampler(abc.ABC): |
nothing calls this directly
no outgoing calls
no test coverage detected