CoolFace
Modelpublic

ModelsLab/midashenglm-gen-wer-lora

sourceHugging Faceapache-2.0updated 29d agoView on Hugging Face
0likes238downloads
Model Card

ModelsLab/midashenglm-gen-wer-lora

A LoRA adapter for `mispeech/midashenglm-gen`, trained across all five of the model's capabilities — speech, sound effects, music, ambience and mixed scenes — rather than trading one for another.

Hear it

Same prompt, same seed in both arms — generate() seeds the global RNG, so the solver draws identical noise and every audible difference is the adapter.

Speech, 4-word line — "The river remembers everything." The bucket that went 13.9% → 0.0% WER; the base arm garbles it.

basescene-v8
<audio controls src="https://huggingface.co/ModelsLab/midashenglm-gen-wer-lora/resolve/main/samples/speech-4w__BASE.wav"></audio><audio controls src="https://huggingface.co/ModelsLab/midashenglm-gen-wer-lora/resolve/main/samples/speech-4w__V8.wav"></audio>

Speech, 16-word line — both arms intelligible; the adapter is cleaner and tighter.

basescene-v8
<audio controls src="https://huggingface.co/ModelsLab/midashenglm-gen-wer-lora/resolve/main/samples/speech-16w__BASE.wav"></audio><audio controls src="https://huggingface.co/ModelsLab/midashenglm-gen-wer-lora/resolve/main/samples/speech-16w__V8.wav"></audio>

SFX — footsteps on gravel. Texture and caption match improve; the adapter clip runs shorter, the one real remaining cost.

basescene-v8
<audio controls src="https://huggingface.co/ModelsLab/midashenglm-gen-wer-lora/resolve/main/samples/sfx-gravel__BASE.wav"></audio><audio controls src="https://huggingface.co/ModelsLab/midashenglm-gen-wer-lora/resolve/main/samples/sfx-gravel__V8.wav"></audio>

Music — slow solo piano. The adapter plays longer and closer to the caption at this seed.

basescene-v8
<audio controls src="https://huggingface.co/ModelsLab/midashenglm-gen-wer-lora/resolve/main/samples/music-piano__BASE.wav"></audio><audio controls src="https://huggingface.co/ModelsLab/midashenglm-gen-wer-lora/resolve/main/samples/music-piano__V8.wav"></audio>

Ambience — steady rain on a metal roof. Near-identical by design: this arm held.

basescene-v8
<audio controls src="https://huggingface.co/ModelsLab/midashenglm-gen-wer-lora/resolve/main/samples/ambience-rain__BASE.wav"></audio><audio controls src="https://huggingface.co/ModelsLab/midashenglm-gen-wer-lora/resolve/main/samples/ambience-rain__V8.wav"></audio>

Why

Two weak spots in the base model, measured rather than assumed.

Short lines. A four-word line scores around 42% WER where a sixteen-word one scores near zero. The failures are onsets: the model needs a moment to settle and a short line does not give it one. Prompt-side remedies make it worse, so it is a property of the weights.

Sound effects. The model's worst benchmark — AudioCaps FAD 5.01 against TangoFlux's 2.26 — which the paper attributes to training on mixed scenes rather than dedicated sound-effect corpora.

Results

Same prompt, same seed, base weights against these adapters. generate() seeds the global RNG, so the flow-matching solver draws identical noise in both arms and every difference is the adapters.

capabilitymetricbasetunedchange
speechWER5.6%0.2%-5.4%
sfxCLAP text0.40640.3837-0.0226
sfxCLAP real0.41520.4201+0.0049
musicCLAP text0.47360.4673-0.0063
musicCLAP real0.59280.6012+0.0084
ambienceCLAP text0.24420.2070-0.0371
ambienceCLAP real0.36670.3732+0.0065
mixedWER4.8%4.7%-0.1%
mixedCLAP text0.17080.1745+0.0037
mixedCLAP real0.70140.6943-0.0072
speechWER, 4-word lines13.9%0.0%-13.9%
speechWER, 9-word lines3.2%0.0%-3.2%
speechWER, 16-word lines1.9%0.6%-1.2%
speechWER, 27-word lines3.4%0.3%-3.1%
speechmean length4.73s4.47s-0.26s
sfxmean length8.08s6.93s-1.15s
musicmean length9.42s9.19s-0.23s
ambiencemean length10.43s10.29s-0.14s
mixedmean length4.97s4.47s-0.50s

CLAP text is "does it match the caption". CLAP real is cosine to the centroid of genuine MECAT audio of that category — "does it sound like the real thing", which text similarity alone cannot see. WER cannot see either: a clip with no words in it scores 0% however badly the room tone came out.

WER improved by 5.4 points, and that part is solid. The scene arms are not.

Caption adherence or realism fell on: sfx claptext -0.023, ambience claptext -0.037.

Use this for speech. For beds, effects and mixed scenes, A/B it against the base model on your own prompts first — the held-out flow loss improved on every capability, and on the scene arms that did not translate.

Training

MethodLoRA r=32, alpha=64, on LLM attention/MLP and the flow-matching DiT
Trainable72876032 of 2.89 B
Precisionfloat32 with TF32 matmuls, matching how the base model is served
OptimiserAdamW-8bit, lr 5e-05, cosine decay, grad clip 1.0
Steps2500 at an effective batch of 16
Capability mixsfx 22%, ambience 20%, speech 20%, mixed 20%, music 18%
Speech dataLibriTTS-R + MECAT S00; clips under 3 s oversampled 2.5x
Scene dataMECAT-Caption, all eight categories
Anchorvector field pulled towards the frozen base, weight 0.5 on 35% of batches

Base-model hyperparameters follow arXiv:2608.11804 §3.3 where they apply (lambda_stop = 0.01, grad clip 1.0).

Avoiding catastrophic forgetting

Four things, because one is not enough:

  1. 1.LoRA rather than a full fine-tune. Rank 32 bounds how far the weights can move at all.
  2. 2.A capability-weighted mix. The sampler draws by capability, not by pool. At natural frequency the speech buckets are ~80% of the clips and the model would simply get better at reading aloud.
  3. 3.An anchor loss. The tuned vector field is pulled towards the frozen base's on identical noise and timesteps — a trust region around the base model, stated directly rather than hoped for.
  4. 4.A per-capability gate. Held-out flow loss is tracked for each capability separately, and this checkpoint was only saved because the mean improved and no single capability regressed past 2%.

Use

python
from peft import PeftModel
from transformers import AutoModel
import soundfile as sf

model = AutoModel.from_pretrained("mispeech/midashenglm-gen", trust_remote_code=True)
model = PeftModel.from_pretrained(model, "ModelsLab/midashenglm-gen-wer-lora").merge_and_unload().cuda().eval()

result = model.generate(
    "<|caption|> A close, clean recording of a single narrator, with nothing behind it. "
    "<|asr|> The river remembers everything. "
    "<|speech|> A woman in her forties, warm and even, speaking clearly. "
    "<|sfx|> <|unknown|> <|music|> <|unknown|> <|env|> <|unknown|>",
    seed=11,
)
sf.write("out.wav", result["audio"], result["sample_rate"])

Tag order matters more than anything else in the prompt: <|asr|> comes before <|speech|>. Reversed, the model produces fluent unrelated speech — 14.2% mean WER against 373%.

Licences

Apache 2.0, following the base model. Training data: LibriTTS-R (CC-BY-4.0) and MECAT-Caption (CC-BY-3.0), both attribution-only.

Training code: `audio-scenegen/training`.