Views
No views yet
.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 a build (pick a quant — see the table below)
3openasr pull moss-transcribe-diarize:q8
4
5# 3. Transcribe
6openasr transcribe audio.wav --model moss-transcribe-diarize1openasr pull moss-transcribe-diarize:fp16
2openasr pull moss-transcribe-diarize:q8
3openasr pull moss-transcribe-diarize:q4| Quant | File (.oasr) | Size | RAM peak | RTF · M1 CPU | RTF · M1 GPU | JFK ΔWER vs fp16 |
|---|---|---|---|---|---|---|
| fp16 | moss-transcribe-diarize-fp16.oasr | 1.82 GB | 4.66 GB | 0.56× | 0.36× | 0.0% |
| q8_0 | moss-transcribe-diarize-q8_0.oasr | 1.12 GB | 3.49 GB | 0.50× | 0.32× | 0.0% |
| q4_k | moss-transcribe-diarize-q4_k.oasr | 902 MB | 2.99 GB | 0.47× | 0.30× | 0.0% |
.oasr runtime format for CPU-based local inference.1openasr model-pack import moss <src> <out>.oasr \
2 --package-id moss-transcribe-diarize --quantization {fp16,q8-0,q4-k}.oasr container is GGUF-backed; packs use zero-copy mmap weight binding and graph
buffer reuse to keep peak memory low.