Skip to content

Commit 661c392

Browse files
feat: add logo
1 parent befb06a commit 661c392

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

LOGO.png

75.1 KB
Loading

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
# Audio Diffusion - PyTorch
1+
<img src="./LOGO.png"></img>
32

43
Unconditional audio generation using diffusion models, in PyTorch. The goal of this repository is to explore different architectures and diffusion models to generate audio (speech and music) directly from/to the waveform.
54
Progress will be documented in the [experiments](#experiments) section.
@@ -24,7 +23,7 @@ x = torch.randn(2, 1, 2 ** 18) # [batch, channels, samples], 2**18 ≈ 12s of au
2423
loss = model(x)
2524
loss.backward() # Do this many times
2625

27-
# Sample given start noise
26+
# Sample 2 sources given start noise
2827
noise = torch.randn(2, 1, 2 ** 18)
2928
sampled = model.sample(
3029
noise=noise,

0 commit comments

Comments
 (0)