2023-10-05 00:41:37 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
python3 -m venv venv
|
2023-10-07 01:08:28 +00:00
|
|
|
source ./venv/bin/activate
|
|
|
|
pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121
|
2023-10-05 00:41:37 +00:00
|
|
|
pip3 install -e .
|
|
|
|
|
|
|
|
mkdir -p ./training/valle/ckpt/ar+nar-retnet-8/
|
2023-10-06 13:08:28 +00:00
|
|
|
wget -P ./training/valle/ckpt/ar+nar-retnet-8/ "https://huggingface.co/ecker/vall-e/resolve/main/ckpt/ar%2Bnar-retnet-8/fp32.pth"
|
|
|
|
wget -P ./training/valle/ "https://huggingface.co/ecker/vall-e/raw/main/config.yaml"
|