Spaces:
Build error
Build error
hugo flores garcia
commited on
Commit
·
21d295c
1
Parent(s):
c50c4b7
table of contets
Browse files
README.md
CHANGED
|
@@ -13,6 +13,22 @@ license: cc-by-nc-4.0
|
|
| 13 |
|
| 14 |
# VampNet
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
## setting up
|
| 17 |
|
| 18 |
python 3.9-3.11 works well. (for example, using conda)
|
|
@@ -78,7 +94,7 @@ output_signal.write("scratch/output.wav")
|
|
| 78 |
```
|
| 79 |
|
| 80 |
|
| 81 |
-
|
| 82 |
You can launch a gradio UI to play with vampnet.
|
| 83 |
|
| 84 |
```bash
|
|
@@ -115,7 +131,7 @@ To debug training, it's easier to debug with 1 gpu and 0 workers
|
|
| 115 |
CUDA_VISIBLE_DEVICES=0 python -m pdb scripts/exp/train.py --args.load conf/vampnet.yml --save_path /path/to/checkpoints --num_workers 0
|
| 116 |
```
|
| 117 |
|
| 118 |
-
|
| 119 |
|
| 120 |
To fine-tune a model, use the script in `scripts/exp/fine_tune.py`
|
| 121 |
|
|
@@ -143,7 +159,7 @@ launch the c2f job:
|
|
| 143 |
python scripts/exp/train.py --args.load conf/generated/<fine_tune_name>/c2f.yml
|
| 144 |
```
|
| 145 |
|
| 146 |
-
|
| 147 |
|
| 148 |
Once your model has been fine-tuned, you can export it to a HuggingFace model.
|
| 149 |
|
|
|
|
| 13 |
|
| 14 |
# VampNet
|
| 15 |
|
| 16 |
+
# Table of contents
|
| 17 |
+
|
| 18 |
+
- [setting up](#setting-up)
|
| 19 |
+
- [programmatic usage](#programmatic-usage)
|
| 20 |
+
- [launching the web app](#launching-the-web-app)
|
| 21 |
+
- [training / fine-tuning](#training--fine-tuning)
|
| 22 |
+
- [training a model](#training-a-model)
|
| 23 |
+
- [debugging training](#debugging-training)
|
| 24 |
+
- [fine-tuning](#fine-tuning)
|
| 25 |
+
- [exporting your model](#exporting-your-model)
|
| 26 |
+
- [unloop](#unloop)
|
| 27 |
+
- [token telephone](#token-telephone)
|
| 28 |
+
- [a note on argbind](#a-note-on-argbind)
|
| 29 |
+
- [take a look at the pretrained models](#take-a-look-at-the-pretrained-models)
|
| 30 |
+
- [licensing for pretrained models](#licensing-for-pretrained-models)
|
| 31 |
+
|
| 32 |
## setting up
|
| 33 |
|
| 34 |
python 3.9-3.11 works well. (for example, using conda)
|
|
|
|
| 94 |
```
|
| 95 |
|
| 96 |
|
| 97 |
+
# Launching the Web app
|
| 98 |
You can launch a gradio UI to play with vampnet.
|
| 99 |
|
| 100 |
```bash
|
|
|
|
| 131 |
CUDA_VISIBLE_DEVICES=0 python -m pdb scripts/exp/train.py --args.load conf/vampnet.yml --save_path /path/to/checkpoints --num_workers 0
|
| 132 |
```
|
| 133 |
|
| 134 |
+
# Fine-tuning
|
| 135 |
|
| 136 |
To fine-tune a model, use the script in `scripts/exp/fine_tune.py`
|
| 137 |
|
|
|
|
| 159 |
python scripts/exp/train.py --args.load conf/generated/<fine_tune_name>/c2f.yml
|
| 160 |
```
|
| 161 |
|
| 162 |
+
# Exporting your model
|
| 163 |
|
| 164 |
Once your model has been fine-tuned, you can export it to a HuggingFace model.
|
| 165 |
|