Views
No views yet
Universal-TTS-Framework + Qwen3-TTS-12Hz-1.7B 基座 + 自研 <|EMO_CHANGE|> 标记 + InnerEmoEval 打分工具链,打包为一份完全自包含、换机器即用的交付版本。instruct_tts_deliverable.zip 大小 49 GB,因为超过 HuggingFace 单文件 50 GB 限制,
所以被切成 4 份 (~13 GB × 3 + 10 GB × 1) 上传。请下载所有分片后合并解压。| 文件 | 大小 | MD5 |
|---|---|---|
instruct_tts_deliverable.zip.part00 | 13 GB | bc92130fa9a1c55ab884252fd8eac5f6 |
instruct_tts_deliverable.zip.part01 | 13 GB | 7c1ea795848fd77671ecec326ec8611f |
instruct_tts_deliverable.zip.part02 | 13 GB | e7918a07daf15e464b62e0da3308b6e6 |
instruct_tts_deliverable.zip.part03 | 10 GB | c33c3f9ceedec2c204367aa811b2c995 |
d752f0ad11d36b345e32168c0052d2e81# 1) 下载 (推荐 huggingface-cli)
2pip install -U "huggingface_hub[cli]"
3huggingface-cli download ScorpioMiku/SIYUAN --local-dir ./SIYUAN --local-dir-use-symlinks False
4
5# 或者用 hf_hub_download 一个个下(示例):
6# python -c 'from huggingface_hub import hf_hub_download; \
7# [hf_hub_download("ScorpioMiku/SIYUAN", f"instruct_tts_deliverable.zip.part0{i}", local_dir="./SIYUAN") for i in range(4)]'
8
9# 2) 校验分片
10cd ./SIYUAN
11md5sum -c <(cat <<EOF
12bc92130fa9a1c55ab884252fd8eac5f6 instruct_tts_deliverable.zip.part00
137c1ea795848fd77671ecec326ec8611f instruct_tts_deliverable.zip.part01
14e7918a07daf15e464b62e0da3308b6e6 instruct_tts_deliverable.zip.part02
15c33c3f9ceedec2c204367aa811b2c995 instruct_tts_deliverable.zip.part03
16EOF
17)
18
19# 3) 合并 4 份为原 zip
20cat instruct_tts_deliverable.zip.part00 \
21 instruct_tts_deliverable.zip.part01 \
22 instruct_tts_deliverable.zip.part02 \
23 instruct_tts_deliverable.zip.part03 > instruct_tts_deliverable.zip
24
25# (可选) 校验合并后的 zip 完整
26echo "d752f0ad11d36b345e32168c0052d2e8 instruct_tts_deliverable.zip" | md5sum -c
27
28# 4) 解压 + 首次修复 + 跑单条推理
29unzip instruct_tts_deliverable.zip
30cd instruct_tts
31bash envs/first_run_fix.sh
32source env.sh
33bash scripts/infer/infer_single.sh<|EMO_CHANGE|> 情感切换)first_run_fix.sh 幂等 (可反复跑无害)README.md + DELIVERABLE.md。