File size: 1,061 Bytes
7ef7985
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
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}
}
```