We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82ae863 commit 8731330Copy full SHA for 8731330
audio_diffusion_pytorch/diffusion/elucidated.py
@@ -12,12 +12,12 @@
12
""" Samplers and sigma schedules """
13
14
15
-class Sampler:
+class SigmaSampler:
16
def __call__(self, num_samples: int, device: str):
17
raise NotImplementedError()
18
19
20
-class LogNormalSampler(Sampler):
+class LogNormalSampler(SigmaSampler):
21
def __init__(self, mean: float, std: float):
22
self.mean = mean
23
self.std = std
0 commit comments