yhaha commited on
Commit
daf78ed
·
verified ·
1 Parent(s): 859eba2

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # GROW checkpoints
2
+
3
+ The three checkpoints released here correspond to rows of **Table 1** in the
4
+ paper.
5
+
6
+ | Folder | Table 1 row | Model | Checkpoint | Notes |
7
+ |--------|-------------|-------|-----------|-------|
8
+ | `01_pretrain/` | Row 1 | Pretrained DiTAR (`DiTAR`) | `model_200000.pt` | 200K-step pretrain; also the frozen reference *q* for RL |
9
+ | `02_ditar_grpo_nfe10/` | Row 3 | DiTAR-GRPO, NFE=10 (`DiTAR_SDE`) | `model_750.pt` | Flow-GRPO baseline, rollout NFE=10, β<sub>W2</sub>=0, lr=1e-5 |
10
+ | `03_grow_nfe10/` | Row 6 | GROW, NFE=10 (`DiTAR_ORW`) | `model_750.pt` | **Default GROW setting**: rollout NFE=10, β<sub>W2</sub>=0.025, lr=2e-6 |
11
+
12
+ Reported full-test-set metrics (WER / SIM — LibriSpeech-PC · Seed-TTS EN · Seed-TTS ZH):
13
+
14
+ | Checkpoint | LS WER/SIM | Seed-EN WER/SIM | Seed-ZH WER/SIM |
15
+ |------------|-----------|-----------------|-----------------|
16
+ | `01_pretrain` | 2.373 / 0.648 | 2.406 / 0.663 | 1.269 / 0.717 |
17
+ | `02_ditar_grpo_nfe10` | 2.332 / 0.683 | 1.728 / 0.699 | 1.180 / 0.738 |
18
+ | `03_grow_nfe10` | 1.927 / 0.701 | 1.763 / 0.702 | 0.983 / 0.742 |
19
+
20
+ Each folder ships the training/inference `config.yaml` next to the
21
+ `.pt` weights. The eval loader reads model weights from `model_state_dict`
22
+ (RL checkpoints) or `ema_model_state_dict` (the pretrained checkpoint),
23
+ matching `cfg.model.name`.
24
+
25
+ ## Layout
26
+
27
+ ```
28
+ model_ckpts/
29
+ ├── 01_pretrain/ config.yaml model_200000.pt
30
+ ├── 02_ditar_grpo_nfe10/ config.yaml model_750.pt
31
+ └── 03_grow_nfe10/ config.yaml model_750.pt
32
+ ```
33
+
34
+ > The `.pt` weights are large (4–13 GB) and are distributed via HuggingFace,
35
+ > not git. Download them into the matching folder
36
+ > before running evaluation.