Views
No views yet
.oasr pack runs locally through OpenASR's persistent ggml graph without Python at inference time.oasr packs run with no Python at inference, engineered for peak performance on CPU & GPU1# 1. Install the OpenASR CLI · https://openasr.org
2# 2. Pull the pack
3openasr pull diarizen-large-s80-v2:fp16 --accept-license
4
5# 3. Diarize any transcription (works with every OpenASR ASR model)
6openasr transcribe meeting.wav --model xasr-zh-en --diarize --format srt| Quant | File (.oasr) | Size |
|---|---|---|
| fp16 | diarizen-large-s80-v2-fp16.oasr | 139 MB |
.oasr capability pack and
uses it as an optional external segmenter in the universal local-file Voice ID
pipeline. It predicts recording-local speaker activity; ReDimNet2-B6 still
provides clustering and enrolled-person identity. The checkpoint is licensed
under CC BY-NC 4.0, so downloading and activating it require explicit
non-commercial acknowledgement. OpenASR does not select it merely because Voice
ID was enabled; the permissive segmentation-3.0 pack remains the default.python3 tooling/diarizen/convert_diarizen.py --checkpoint <pytorch_model.bin> --config <config.toml> --out <diarizen-large-s80-v2-fp16.oasr> --model-id diarizen-large-s80-v2 --quant fp16.oasr container is GGUF-backed; projection weights are stored as fp16 while
norms/biases and other parity-sensitive tensors remain f32..oasr runtime format. Credit for the model,
architecture, training and original weights belongs to BUT Speech@FIT and the
DiariZen authors. The checkpoint is licensed under CC BY-NC 4.0; OpenASR's
format conversion does not broaden that license.