Spaces:
Runtime error
Runtime error
Hugo Flores Garcia
commited on
Commit
·
82c5a36
1
Parent(s):
e32ae3e
update setup, reade
Browse files- README.md +1 -14
- requirements.txt +1 -1
- setup.py +3 -1
README.md
CHANGED
|
@@ -6,21 +6,8 @@ This repository contains recipes for training generative music models on top of
|
|
| 6 |
|
| 7 |
Requires Python 3.9 or later.
|
| 8 |
|
| 9 |
-
install my fork of [audiotools](https://github.com/hugofloresgarcia/audiotools.git)
|
| 10 |
-
```bash
|
| 11 |
-
git clone https://github.com/hugofloresgarcia/audiotools.git
|
| 12 |
-
cd audiotools
|
| 13 |
-
pip install -e .
|
| 14 |
-
```
|
| 15 |
-
|
| 16 |
-
install the [`Descript Audio Codec`](https://github.com/descriptinc/descript-audio-codec.git).
|
| 17 |
-
```bash
|
| 18 |
-
git clone https://github.com/descriptinc/descript-audio-codec.git
|
| 19 |
-
cd descript-audio-codec
|
| 20 |
-
pip install -e .
|
| 21 |
-
```
|
| 22 |
|
| 23 |
-
|
| 24 |
|
| 25 |
```bash
|
| 26 |
git clone https://github.com/hugofloresgarcia/vampnet.git
|
|
|
|
| 6 |
|
| 7 |
Requires Python 3.9 or later.
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
+
install VampNet
|
| 11 |
|
| 12 |
```bash
|
| 13 |
git clone https://github.com/hugofloresgarcia/vampnet.git
|
requirements.txt
CHANGED
|
@@ -4,5 +4,5 @@ numpy==1.22
|
|
| 4 |
gradio
|
| 5 |
loralib
|
| 6 |
wavebeat @ git+https://github.com/hugofloresgarcia/wavebeat
|
| 7 |
-
|
| 8 |
audiotools @ git+https://github.com/hugofloresgarcia/audiotools.git@main
|
|
|
|
| 4 |
gradio
|
| 5 |
loralib
|
| 6 |
wavebeat @ git+https://github.com/hugofloresgarcia/wavebeat
|
| 7 |
+
lac @ git+https://github.com/hugofloresgarcia/lac.git
|
| 8 |
audiotools @ git+https://github.com/hugofloresgarcia/audiotools.git@main
|
setup.py
CHANGED
|
@@ -29,7 +29,9 @@ setup(
|
|
| 29 |
"torch",
|
| 30 |
"argbind>=0.3.2",
|
| 31 |
"numpy==1.22",
|
| 32 |
-
"
|
|
|
|
|
|
|
| 33 |
"gradio",
|
| 34 |
"tensorboardX",
|
| 35 |
"loralib",
|
|
|
|
| 29 |
"torch",
|
| 30 |
"argbind>=0.3.2",
|
| 31 |
"numpy==1.22",
|
| 32 |
+
"wavebeat @ git+https://github.com/hugofloresgarcia/wavebeat",
|
| 33 |
+
"lac @ git+https://github.com/hugofloresgarcia/lac.git",
|
| 34 |
+
"audiotools @ git+https://github.com/hugofloresgarcia/audiotools.git@main",
|
| 35 |
"gradio",
|
| 36 |
"tensorboardX",
|
| 37 |
"loralib",
|