Skip to content

Commit

Permalink
fix: remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
flavioschneider committed Dec 14, 2022
1 parent 7fa0ad2 commit 432557a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion audio_diffusion_pytorch/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ def forward( # type: ignore
self, x: Tensor, with_info: bool = False, **kwargs
) -> Union[Tensor, Tuple[Tensor, Any]]:
latent, info = self.encode(x, with_info=True)
print(latent.shape)
loss = super().forward(x, channels_list=[latent], **kwargs)
return (loss, info) if with_info else loss

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name="audio-diffusion-pytorch",
packages=find_packages(exclude=[]),
version="0.0.96",
version="0.0.97",
license="MIT",
description="Audio Diffusion - PyTorch",
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 432557a

Please sign in to comment.