Spaces:
Running on Zero
Running on Zero
File size: 962 Bytes
1e0878a ffbb4ab 1e0878a ffbb4ab 1e0878a ffbb4ab 1e0878a ffbb4ab 1e0878a ffbb4ab 1e0878a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # Note: Set --ckpt_path to "ASLP-lab/YingMusic-Singer" to automatically
# download and load checkpoints from Hugging Face.
# Example:
# --ckpt_path ASLP-lab/YingMusic-Singer
# JSONL input:
python inference_mp.py \
--input_type jsonl \
--input_path /path/to/your/input_jsonl.jsonl \
--output_dir /path/to/your/output/Jsonl \
--ckpt_path ASLP-lab/YingMusic-Singer \
--num_gpus 8 \
--show_all_progress
# LyricEditBench input (melody control):
python inference_mp.py \
--input_type lyric_edit_bench_melody_control \
--output_dir /path/to/your/output/LyricEditBench_melody_control \
--ckpt_path ASLP-lab/YingMusic-Singer \
--num_gpus 8 \
--show_all_progress
# LyricEditBench input (sing edit):
python inference_mp.py \
--input_type lyric_edit_bench_sing_edit \
--output_dir /path/to/your/output/LyricEditBench_sing_edit \
--ckpt_path ASLP-lab/YingMusic-Singer \
--num_gpus 8 \
--show_all_progress |