Skip to content

FunASR 1.3.17

Choose a tag to compare

@LauraGPT LauraGPT released this 18 Jul 21:59
· 547 commits to main since this release
98536ea

FunASR 1.3.17 focuses on making local and long-running speech deployments easier to install, debug, and share.

Install

python -m pip install -U "funasr==1.3.17"
python -c "import funasr; print(funasr.__version__, funasr.__file__)"

Highlights

  • Realtime WebSocket diagnostics for long SenseVoice / Fun-ASR-Nano sessions. Use --log-session-stats-interval 30 to print bounded-session state such as retained audio samples, locked sentences, speaker history chunks, speaker embeddings, and speaker centers while reproducing long-session disconnect or RTF growth reports.
  • SenseVoice llama.cpp runtime improvements, including a backend selector and README promotion for Windows CUDA users.
  • Windows CUDA llama.cpp release asset published for users who want a local binary path instead of building from source.
  • Documentation links for the SenseVoice paper and GGUF checkpoints, making it easier to find local-runtime model artifacts.

Long Realtime Session Retest Path

For reports like long-running serve_realtime_ws.py --enable-spk sessions slowing down or disconnecting, please test this public package and include the final session stats in any follow-up issue:

python -m pip install -U "funasr==1.3.17"
python examples/industrial_data_pretraining/fun_asr_nano/serve_realtime_ws.py \
  --enable-spk \
  --log-session-stats-interval 30

Useful logs to attach:

  • final Session stats: ... lines
  • last observed RTF values
  • process RSS and GPU memory
  • whether the server printed a close/error log

What's Changed

Full Changelog: v1.3.16...v1.3.17