paiml commited on
Commit
7ef7985
·
verified ·
1 Parent(s): 6ae1a7e

Upload via apr-cli publish (APR-PUB-001)

Browse files
Files changed (1) hide show
  1. README.md +61 -0
README.md ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ - multilingual
6
+ pipeline_tag: automatic-speech-recognition
7
+ library_name: whisper-apr
8
+ tags:
9
+ - aprender
10
+ - rust
11
+ - speech-recognition
12
+ - audio
13
+ - whisper
14
+ model-index:
15
+ - name: paiml/whisper-apr-tiny
16
+ results:
17
+ - task:
18
+ type: automatic-speech-recognition
19
+ dataset:
20
+ name: custom
21
+ type: custom
22
+ metrics:
23
+ - name: accuracy
24
+ type: custom
25
+ value: N/A
26
+ ---
27
+
28
+ # Whisper APR Tiny
29
+
30
+ Whisper APR Tiny model published via aprender
31
+
32
+ ## Available Formats
33
+
34
+ | Format | Description |
35
+ |--------|-------------|
36
+ | `model.apr` | Native APR format (streaming, WASM-optimized) |
37
+ | `model.safetensors` | HuggingFace standard format |
38
+
39
+ ## Usage
40
+
41
+ ```rust
42
+ use aprender::Model;
43
+
44
+ let model = Model::load("model.apr")?;
45
+ let result = model.run(&input)?;
46
+ ```
47
+
48
+ ## Framework
49
+
50
+ - **Version:** aprender 0.24.1
51
+
52
+ ## Citation
53
+
54
+ ```bibtex
55
+ @software{aprender,
56
+ title = {aprender: Rust ML Library},
57
+ author = {PAIML},
58
+ year = {2025},
59
+ url = {https://github.com/paiml/aprender}
60
+ }
61
+ ```