254 Commits

Author SHA1 Message Date
zhifu gao eedd4e22d1 chore(release): prepare 1.4.3 (#3519)
Release FunASR 1.4.3 with the optional Silero VAD adapter and scalable fixed-K diarization clustering.\n\nSigned-off-by: zhifu gao <18321252+LauraGPT@users.noreply.github.com>
2026-08-21 11:39:49 +08:00
tandede 9dbf3e1c08 fix(diarization): scale clustering with known speaker counts 2026-08-20 01:15:55 +08:00
zhifu gao 16c31c0109 ops(growth): track SGLang Fun-ASR CI gate (#3510)
Signed-off-by: LauraGPT <170200537+LauraGPT@users.noreply.github.com>
Co-authored-by: LauraGPT <170200537+LauraGPT@users.noreply.github.com>
2026-08-17 09:44:30 +08:00
zhifu gao 4a58b27293 docs(growth): record four-repo homepage routing (#3509)
Signed-off-by: LauraGPT <170200537+LauraGPT@users.noreply.github.com>
Co-authored-by: LauraGPT <170200537+LauraGPT@users.noreply.github.com>
2026-08-17 09:28:47 +08:00
LauraGPT b4018dacae test: track current llama.cpp runtime contract
Signed-off-by: LauraGPT <170200537+LauraGPT@users.noreply.github.com>
2026-08-17 00:46:25 +00:00
LauraGPT e8ea59a02c fix(vad): preserve Silero ONNX CPU inputs 2026-08-14 07:35:21 +00:00
LauraGPT 419674e544 fix(vad): keep Silero inputs on the model device 2026-08-14 07:32:23 +00:00
wuhongsheng 22920822a2 feat(vad): add Silero VAD adapter 2026-08-14 11:13:32 +08:00
LauraGPT 8c08e2636b chore: prepare FunASR 1.4.2 release
Signed-off-by: LauraGPT <LauraGPT@users.noreply.github.com>
2026-08-11 18:23:20 +00:00
zhifu gao 62b784b2b9 docs: surface llama.cpp runtime v0.2.0 (#3484)
Signed-off-by: LauraGPT <18321252+LauraGPT@users.noreply.github.com>
2026-08-11 14:17:59 +08:00
zhifu gao 680b1b3f10 docs(vllm): clarify official model paths (#3476)
Clarify official and native vLLM model paths. Closes #3475.
2026-08-05 16:23:20 +08:00
zhifu gao ea21a7e53a test(site): refresh ecosystem contract (#3474)
Signed-off-by: zhifu gao <lauragpt@users.noreply.github.com>
Co-authored-by: zhifu gao <lauragpt@users.noreply.github.com>
2026-08-05 15:09:27 +08:00
May 112b80fa0b fix(train): initialize DeepSpeed mode from resolved config (#3471)
Resolve distributed trainer settings once with top-level precedence and backwards-compatible train_conf fallbacks. Remove consumed mode keys before expanding trainer_conf, reject simultaneous FSDP and DeepSpeed, and cover the behavior with focused tests.
2026-08-05 11:35:53 +08:00
zhifu gao 6829ba7845 fix(auto-model): align split punctuation tokens (#3469)
Preserve subtitle segmentation when punctuation token boundaries split a timestamped ASR word.

Signed-off-by: LauraGPT <LauraGPT@users.noreply.github.com>
2026-08-04 14:27:55 +08:00
LauraGPT 7a974018c2 chore: prepare FunASR 1.4.1 release
Signed-off-by: LauraGPT <LauraGPT@users.noreply.github.com>
2026-08-04 02:23:14 +00:00
zhifu gao 187dc73f08 fix: route paraformer-en to the English HF model (#3466)
Route the Hugging Face paraformer-en alias to the official English checkpoint and keep the behavior covered by a regression test.
2026-08-04 10:06:33 +08:00
zhifu gao 6408aaa96d feat(runtime): add SenseVoice TensorRT deployment (#3463)
Co-authored-by: LauraGPT <lauragpt@users.noreply.github.com>
2026-08-04 02:22:57 +08:00
张思远 (ZhangSiYuan) a2a9f67cb4 test(nano): make LoRA tests deterministic (#3459)
The tests merged in #3456 were flaky: the state-dict round-trip test draws from
the unseeded global RNG, and the merged vs unmerged fp32 forwards can differ by
~4e-5 (different op orderings), above torch.allclose's default 1e-5 rtol. The
test failed on roughly one in three full-file runs.

- Seed the RNG per test so every test is reproducible.
- Compare merge/unmerge at a fp32-appropriate rtol=1e-3. A genuinely broken
  merge differs by the full adapter term (O(1-10)), not ~1e-5, so the tolerance
  is still discriminating (verified: a 'mark merged but don't fold' bug yields
  max_abs_diff ~12).
- Add test_mark_only_lora_as_trainable_keeps_adapters_trainable, which exercises
  the lora_only=true flow (mark_only_lora_as_trainable in train.py/train_ds.py)
  that the previous reply described but did not actually test.

Verified: 8/8 pass, stable across repeated runs; the full nano set is 35 passed.

Co-authored-by: Claude <noreply@anthropic.com>
2026-08-03 15:24:08 +08:00
张思远 (ZhangSiYuan) 0738581f4b feat(nano): support LoRA finetuning of the Qwen3 LLM (#3456)
* feat(nano): support LoRA finetuning of the Qwen3 LLM

The FunASR-Nano model config already declares llm_conf.use_lora and
llm_conf.lora_conf (r/lora_alpha/lora_dropout/target_modules), but nothing
consumed them: use_lora was silently ignored and training fell back to the
full-parameter LLM path. Wire it up:

- When llm_conf.use_lora is true, replace the LLM target Linear layers
  (default q_proj/v_proj) with lora.Linear adapters, sharing the frozen base
  weight and adding trainable lora_A/lora_B. The adapter params are created in
  the base weight's dtype (bf16), so the LoRA path does not depend on autocast.
- Pairs with the existing lora_only / mark_only_lora_as_trainable flow in
  train.py / train_ds.py: lora_only=true freezes every non-LoRA parameter for
  pure-LoRA training; lora_only=false + unfrozen encoder/adaptor conf keeps
  them trainable while LoRA-tweaking only the LLM.
- Checkpoints save the full state dict (unchanged base + adapter params), so a
  LoRA run can be resumed or decoded with the same use_lora=true config; for a
  standalone deployment checkpoint, fold with W' = W + alpha/r * B @ A.
- Add lora_finetune.sh and document the recipe in finetune.md / finetune_zh.md.

Validated end-to-end with the real model: 56 adapters injected (28 Qwen3
layers x q_proj+v_proj), optimizer updates only the 112 LoRA params, and a
2-step smoke training run through funasr-train-ds completes and saves a
checkpoint whose lora keys are bf16 and match the base dtype.

Co-Authored-By: Claude <noreply@anthropic.com>

* test(nano): add offline unit tests for LoRA injection

Drive FunASRNano._apply_lora_to_llm against a tiny fake LLM mirroring the
Qwen3 parameter layout (layers.<i>.self_attn.{q,k,v,o}_proj / mlp.{gate,up,down}_proj).
No model download needed.

Covers the points requested in review:
1. only configured target modules are replaced;
2. the initial output matches the original linear layers (lora_B init zero);
3. base weights stay frozen while lora_A/lora_B are trainable (llm_conf.freeze
   applied before injection, as in the real init path);
4. a non-zero adapter survives a state-dict save/load round trip and train/eval
   transitions (including the eval-merge / train-unmerge convention);
5. the no-matching-target configuration is an explicit no-op with a warning.

Verified honest: on upstream main (no _apply_lora_to_llm) all 7 fail with
AttributeError; with the fix 7/7 pass. Full nano set: 34 passed.

Co-Authored-By: Claude <noreply@anthropic.com>

---------

Co-authored-by: Claude <noreply@anthropic.com>
2026-08-03 14:28:02 +08:00
张思远 (ZhangSiYuan) 036ed6936b fix(trainer): avoid KeyError when a checkpoint is saved at an unvalidated step (#3455)
* fix(trainer): avoid KeyError when a checkpoint is saved at an unvalidated step

When save_checkpoint_interval is not a multiple of validate_interval, a
checkpoint can be saved at a step that was never validated. The best-ckpt
comparison then indexes val_acc/val_loss_step_or_epoch[ckpt_name], raising
KeyError right after the checkpoint was already written and aborting the run.

Guard both the DeepSpeed and the torch.save checkpoint paths with .get() so
an unvalidated checkpoint is skipped for the "best" bookkeeping (and logged)
instead of crashing; fall back to 0.0 when recording saved_ckpts.

Co-Authored-By: Claude <noreply@anthropic.com>

* fix(trainer): exclude unvalidated-step checkpoints from best-model ranking

Address review feedback on PR #3455. A checkpoint saved at a step that was
never validated (save_checkpoint_interval not a multiple of
validate_interval) used to be inserted into `saved_ckpts` with a fabricated
score of 0.0. Under loss-based ranking that synthetic "perfect" loss could
evict a real validated best checkpoint via keep_nbest_models pruning.

Now such checkpoints are kept on disk but excluded from `saved_ckpts`
entirely, so they never compete in best-model ranking or pruning, and
`best_step_or_epoch` only ever references validated checkpoints.

Adds regression coverage for both loss and acc ranking on the DeepSpeed
and torch.save paths, asserting an unvalidated checkpoint cannot evict a
validated best checkpoint.

* test(trainer): make unvalidated-ckpt regression catch the DeepSpeed+acc case

The fake DeepSpeed engine now writes a placeholder file per tag (mirroring
DeepSpeed's per-tag checkpoint dirs), so keep_nbest_models pruning's
smart_remove() is observable. This closes a gap where the [DeepSpeed, acc]
combination passed on the buggy code: under acc ranking the fabricated 0.0
is the minimum, so pruning deletes the unvalidated checkpoint itself rather
than the validated best, and without an on-disk artifact that deletion was
invisible.

With the fix, all 8 cases pass; on the previous code all 4 unvalidated-step
cases now fail (loss: fabricated 0.0 evicts the validated best; acc: the
unvalidated checkpoint file is pruned).

* fix(trainer): apply the same unvalidated-step guard to the non-DeepSpeed Trainer

`funasr-train` (funasr/train_utils/trainer.py) shares the identical
checkpoint-ranking code as trainer_ds.py and had the same bug: direct
indexing of `val_{acc,loss}_step_or_epoch[ckpt_name]` raised KeyError when
a checkpoint was saved at a step that was never validated, and the
keep_nbest_models bookkeeping inserted a fabricated score for such
checkpoints.

Apply the same fix: checkpoints saved at an unvalidated step are kept on
disk but excluded from saved_ckpts (no synthetic score), best_step_or_epoch
only ever references validated checkpoints, and the metric dicts are read
via .get().

Tests now parametrize over all three checkpointing paths (trainer_ds
torch.save, trainer_ds DeepSpeed, and trainer torch.save) x loss/acc.
On upstream main all 6 unvalidated-step cases fail with
`KeyError: 'model.pt.ep1.2'`; with the fix all 12 cases pass.

---------

Co-authored-by: Claude <noreply@anthropic.com>
2026-08-03 14:19:25 +08:00
zhifu gao 1359151794 fix: include runtime package data (#3445)
Include SenseVoice English normalization data and RWKV-BAT CUDA kernel sources in PyPI artifacts, with a real-wheel release contract.\n\nSigned-off-by: zhifu gao <18321252+LauraGPT@users.noreply.github.com>
2026-07-30 05:32:44 +08:00
zhifu gao e65f6ba080 chore: prepare FunASR 1.4.0 release (#3444)
Advance the package version to 1.4.0, document the Python and tagged-source release changes in four languages, and enforce the release numbering contract.

Signed-off-by: LauraGPT <lauragpt@users.noreply.github.com>
2026-07-30 04:35:26 +08:00
zhifu gao 60827ffbeb fix(auto-model): report vda model typo (#3443)
Fail immediately with an actionable parameter name when `vda_model` is supplied, instead of silently disabling the VAD-dependent long-audio and speaker pipeline.

Signed-off-by: Zhifu Gao <gaozhifu.gzf@alibaba-inc.com>
2026-07-30 04:13:35 +08:00
zhifu gao 90110b9d6b test(site): align homepage patrol with product build (#3442)
Bind the public homepage patrol contract to the canonical product-site build so copy changes cannot leave the monitor reporting a false production regression.

Signed-off-by: Zhifu Gao <gaozhifu.gzf@alibaba-inc.com>
2026-07-30 04:04:19 +08:00
zhifu gao 30caaf8e18 fix(websocket): finalize file input on end control (#3440)
Signed-off-by: LauraGPT <lauragpt@users.noreply.github.com>
Co-authored-by: LauraGPT <lauragpt@users.noreply.github.com>
2026-07-29 20:24:01 +08:00
zhifu gao 763ee06e37 Decode container-formatted audio bytes before inference (#3435)
Decode encoded audio containers before inference while preserving the raw PCM fast path. Rewind file-like decoder fallbacks and support ffmpeg stdin decoding.

Signed-off-by: LauraGPT <lauragpt@users.noreply.github.com>
2026-07-27 14:55:49 +00:00
zhifu gao 0a9cc00642 fix(auto-model): preserve VAD segments on punctuation mismatch (#3434)
Fall back to VAD-aligned string sentence records when a sized punctuation array cannot align with long-audio ASR timestamps.

Verified against both reporter attachments: 103.mp3 recovers 199 sentence records and 2980.mp3 remains byte-for-byte unchanged.

Signed-off-by: LauraGPT <lauragpt@users.noreply.github.com>
2026-07-27 21:40:45 +08:00
zhifu gao cbed336e56 fix(server): return speaker labels for spk requests (#3433)
Make spk=true functional across vLLM and fallback server paths, preserve speaker labels in verbose_json segments, and accept sentence_info sentence text.
2026-07-27 20:01:21 +08:00
zhifu gao 866cf910dc fix(server): allow trusted browser origins (#3427)
Product site / build-and-validate (push) Has been cancelled
Validate and publish FunASR MCP server / validate (push) Has been cancelled
Test llama.cpp downloader / contract (push) Has been cancelled
Update API Documentation / build-api-docs (push) Has been cancelled
Product site / browser (push) Has been cancelled
Validate and publish FunASR MCP server / publish (push) Has been cancelled
Add explicit, default-disabled trusted browser origins to funasr-server, with CLI coverage and bilingual troubleshooting guidance.
2026-07-27 05:57:06 +08:00
zhifu gao 05e464c80c docs: surface the deployment product hub (#3425)
Co-authored-by: LauraGPT <lauragpt@users.noreply.github.com>
2026-07-27 01:52:46 +08:00
zhifu gao 5f0e67fec6 test: guard donor navigation across public pages (#3422)
Co-authored-by: LauraGPT <lauragpt@users.noreply.github.com>
2026-07-26 18:31:03 +08:00
zhifu gao efee734648 test: guard donor navigation across public pages (#3421)
Discover all public HTML pages through the sitemap and enforce the bilingual donor entry as the final directory link. Includes regression coverage for missing, misplaced, duplicate, and wrong-language links.
2026-07-26 15:19:25 +08:00
zhifu gao 70c868cf47 fix: limit vLLM VAD segments to 30 seconds (#3420)
Configure FSMN-VAD with a 30-second maximum segment duration and add a regression test. This fixes the long-audio omission reproduced from #3419.
2026-07-26 14:53:00 +08:00
zhifu gao a28ee6b39d ci: guard FunClip v2.1.0 launch pages (#3417)
Add robust live-site contracts for the bilingual FunClip v2.1.0 launch pages, release routes, donor navigation, and interface image. Hidden evidence and zero-area links cannot satisfy the contract.
2026-07-25 00:04:08 +08:00
zhifu gao 99b703009a Return VAD sentence timestamps for SenseVoice (#3414)
Co-authored-by: zhifu gao <18321252+LauraGPT@users.noreply.github.com>
2026-07-24 20:20:32 +08:00
zhifu gao 19a903fa87 Use QwenAudio canonical repository links (#3412)
Co-authored-by: zhifu gao <18321252+LauraGPT@users.noreply.github.com>
2026-07-24 19:01:36 +08:00
zhifu gao a7a5b9408b docs: surface official Dify Marketplace plugin (#3411)
Surface the live official Dify Marketplace plugin in bilingual docs and funasr.com contracts, with exact version and upload-limit regression coverage.
2026-07-24 17:11:00 +08:00
zhifu gao ddea8873fb test: guard v1.3.28 website launch (#3410)
Co-authored-by: zhifu gao <18321252+LauraGPT@users.noreply.github.com>
2026-07-24 16:20:54 +08:00
zhifu gao 689cc945b4 chore: release FunASR 1.3.28 (#3409)
Release on tag / release (push) Has been cancelled
* chore: release FunASR 1.3.28

* fix: handle realtime websocket errors reliably

---------

Co-authored-by: zhifu gao <18321252+LauraGPT@users.noreply.github.com>
2026-07-24 15:41:04 +08:00
zhifu gao c8f849f203 fix: preserve stable realtime transcript on lock (#3408)
Update API Documentation / build-api-docs (push) Has been cancelled
Co-authored-by: zhifu gao <18321252+LauraGPT@users.noreply.github.com>
2026-07-24 14:50:54 +08:00
zhifu gao 878da6e513 fix: align SenseVoice sentence timestamps (#3407) 2026-07-24 12:23:37 +08:00
zhifu gao ac0a08de47 release: attach runtime assets to Python releases (#3405)
Co-authored-by: zhifu gao <18321252+LauraGPT@users.noreply.github.com>
2026-07-24 06:34:31 +08:00
zhifu gao 0a0963647b test: guard v1.3.27 website launch (#3404) 2026-07-24 02:27:39 +08:00
zhifu gao 3a5fa06f0e chore: release FunASR 1.3.27 (#3403)
Release on tag / release (push) Has been cancelled
2026-07-24 02:02:38 +08:00
zhifu gao e0fbedfbac fix(server): reuse Fun-ASR-Nano fallback after vLLM failure (#3402)
Closes #3401.
2026-07-24 01:33:53 +08:00
zhifu gao 8d9b34bebc fix(server): report detected transcription language (#3400) 2026-07-23 22:24:23 +08:00
zhifu gao 6c3b47c2e5 docs: publish runtime v0.1.9 download links (#3399) 2026-07-23 19:38:51 +08:00
zhifu gao eff1080856 docs: add SenseVoice continual fine-tuning guide (#3396) 2026-07-23 15:57:15 +08:00
zhifu gao c3e147cc2b docs: list SmartSub community integration (#3395) 2026-07-23 14:06:02 +08:00
zhifu gao de9ee9e94b Track integration review decisions (#3394) 2026-07-23 13:48:44 +08:00