Skip to content

Commit 2918214

Browse files
fix: unet comment
1 parent cb1551b commit 2918214

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ unet = UNet1d(
6161
x = torch.randn(3, 1, 2 ** 16)
6262
t = torch.tensor([0.2, 0.8, 0.3])
6363

64-
y = unet(x, t) # [2, 1, 32768], 2 samples of ~1.5 seconds of generated audio at 22050kHz
64+
y = unet(x, t) # [3, 1, 32768], compute 3 samples of ~1.5 seconds at 22050Hz with the given noise levels t
6565
```
6666

6767
### Diffusion

0 commit comments

Comments
 (0)