From c890e5b8b071ba70f3de60f4817b121f6fe6537a Mon Sep 17 00:00:00 2001 From: "Scott H. Hawley" Date: Thu, 8 Sep 2022 15:24:02 -0500 Subject: [PATCH 1/3] commenting out jukebox requirement; install separately if needed. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 17392cd..8b6d9b0 100644 --- a/setup.py +++ b/setup.py @@ -23,8 +23,8 @@ 'transformers', 'vector-quantize-pytorch', 'wandb', - 'jukebox @ git+https://github.com/drscotthawley/jukebox.git', + # 'jukebox @ git+https://github.com/drscotthawley/jukebox.git', 'cached_conv @ git+https://github.com/caillonantoine/cached_conv.git', 'udls @ git+https://github.com/caillonantoine/UDLS.git', ], -) \ No newline at end of file +) From a0a547262406eca9b5610f7322a407cc29bcd458 Mon Sep 17 00:00:00 2001 From: "Scott H. Hawley" Date: Wed, 31 May 2023 10:39:27 -0500 Subject: [PATCH 2/3] Update setup.py to use standard cached_conv --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8b6d9b0..f3f3403 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ 'vector-quantize-pytorch', 'wandb', # 'jukebox @ git+https://github.com/drscotthawley/jukebox.git', - 'cached_conv @ git+https://github.com/caillonantoine/cached_conv.git', + 'cached_conv', 'udls @ git+https://github.com/caillonantoine/UDLS.git', ], ) From ac1cbf4f46bfbb24e66b4ba2e6d44880e12f2564 Mon Sep 17 00:00:00 2001 From: "Scott H. Hawley" Date: Wed, 31 May 2023 10:43:11 -0500 Subject: [PATCH 3/3] Update setup.py to use generic udls --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f3f3403..1e7904e 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,6 @@ 'wandb', # 'jukebox @ git+https://github.com/drscotthawley/jukebox.git', 'cached_conv', - 'udls @ git+https://github.com/caillonantoine/UDLS.git', + 'udls', ], )