--- license: mit language: - en - multilingual pipeline_tag: automatic-speech-recognition library_name: whisper-apr tags: - aprender - rust - speech-recognition - audio - whisper model-index: - name: paiml/whisper-apr-tiny results: - task: type: automatic-speech-recognition dataset: name: custom type: custom metrics: - name: accuracy type: custom value: N/A --- # Whisper APR Tiny Whisper APR Tiny model published via aprender ## Available Formats | Format | Description | |--------|-------------| | `model.apr` | Native APR format (streaming, WASM-optimized) | | `model.safetensors` | HuggingFace standard format | ## Usage ```rust use aprender::Model; let model = Model::load("model.apr")?; let result = model.run(&input)?; ``` ## Framework - **Version:** aprender 0.24.1 ## Citation ```bibtex @software{aprender, title = {aprender: Rust ML Library}, author = {PAIML}, year = {2025}, url = {https://github.com/paiml/aprender} } ```