Spaces:
Sleeping
Sleeping
Hugo Flores Garcia
commited on
Commit
·
04f1577
1
Parent(s):
fd975c2
pip install from commit hangs?
Browse files
README.md
CHANGED
@@ -4,7 +4,22 @@ This repository contains recipes for training generative music models on top of
|
|
4 |
|
5 |
# Setting up
|
6 |
|
7 |
-
install
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
```bash
|
10 |
git clone https://github.com/hugofloresgarcia/vampnet.git
|
|
|
4 |
|
5 |
# Setting up
|
6 |
|
7 |
+
install [audiotools](https://github.com/descriptinc/audiotools.git) (make sure to use this specific commit for now)
|
8 |
+
```bash
|
9 |
+
git clone https://github.com/descriptinc/audiotools.git
|
10 |
+
cd audiotools
|
11 |
+
git checkout f35914b5b3c6f1bf589cd09481478d741538828e
|
12 |
+
pip install -e .
|
13 |
+
```
|
14 |
+
|
15 |
+
install the [`Descript Audio Codec`](https://github.com/descriptinc/descript-audio-codec.git).
|
16 |
+
```bash
|
17 |
+
git clone https://github.com/descriptinc/descript-audio-codec.git
|
18 |
+
cd descript-audio-codec
|
19 |
+
pip install -e .
|
20 |
+
```
|
21 |
+
|
22 |
+
now, install VampNet
|
23 |
|
24 |
```bash
|
25 |
git clone https://github.com/hugofloresgarcia/vampnet.git
|
setup.py
CHANGED
@@ -28,8 +28,8 @@ setup(
|
|
28 |
install_requires=[
|
29 |
"torch",
|
30 |
"argbind>=0.3.2",
|
31 |
-
"audiotools @ git+https://github.com/descriptinc/audiotools.git@f35914b5b3c6f1bf589cd09481478d741538828e",
|
32 |
-
"dac @ git+https://github.com/descriptinc/descript-audio-codec.git",
|
33 |
"gradio",
|
34 |
"tensorboardX",
|
35 |
"loralib"
|
|
|
28 |
install_requires=[
|
29 |
"torch",
|
30 |
"argbind>=0.3.2",
|
31 |
+
# "audiotools @ git+https://github.com/descriptinc/audiotools.git@f35914b5b3c6f1bf589cd09481478d741538828e",
|
32 |
+
# "dac @ git+https://github.com/descriptinc/descript-audio-codec.git",
|
33 |
"gradio",
|
34 |
"tensorboardX",
|
35 |
"loralib"
|