From 46d516cf84965b19d388a97fe2600eebb2b77c03 Mon Sep 17 00:00:00 2001 From: Phil Wang Date: Sat, 27 May 2023 13:17:02 -0700 Subject: [PATCH] release correct masking strategy, thanks to @stevenhillis ! --- README.md | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index eff1359..130781e 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ They basically applied MaskGiT to - Einops for the indispensable abstraction that makes building neural networks fun, easy, and uplifting +- Steven Hillis for submitting the correct masking strategy and for verifying that the repository works! 🙏 + ## Install ```bash diff --git a/setup.py b/setup.py index 84f7c24..243af56 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name = 'soundstorm-pytorch', packages = find_packages(exclude=[]), - version = '0.0.12', + version = '0.0.14', license='MIT', description = 'SoundStorm - Efficient Parallel Audio Generation from Google Deepmind, in Pytorch', author = 'Phil Wang',