Views
No views yet
Audio8-ASR-0.1B. It includes a Swift SDK, a minimal iOS demo app, an optional
ANE benchmark app, and a prebuilt model asset bundle.| Path | Description |
|---|---|
SpeechKit/ | Swift Package exposing SpeechKit, ASRKit, and SpeechCore |
dist/ASRModels.bundle | Prebuilt model assets: Core ML audio tower, ONNX decoder, tokenizer tables, and integrity manifest |
ASRDemo/ | Minimal iOS app for microphone recording and one-shot transcription |
ANEBench/ | Optional iOS app for Core ML / ANE latency and sustained-load checks |
assets/ | Screenshots and model-card media |
config.json | Machine-readable package metadata and Hugging Face download-stat query file |
GETTING_STARTED.md | Reproducible setup, build, signing, and device-testing guide |
LICENSE | Creative Commons Attribution-NonCommercial 4.0 International |
Audio8-ASR-0.1B:mlmodelc with mixed Float16/Int8
storage, Float16 compute/output tensors, and ANE execution.lm_shared_int4.data) and int4 prefill/decode ONNX graphs.token_embedding_fp16.bin).
1brew install xcodegen
2
3cd SpeechKit
4swift package resolve
5swift build
6swift run dev-check
7cd ..
8
9cd ASRDemo
10xcodegen generate
11open ASRDemo.xcodeprojASRDemo target, choose your signing team, change the
bundle identifier to a unique value, then run on an iPhone or iOS Simulator.asrkit-cli --file /path/to/audio.wav.1audio -> log-mel -> Core ML audio tower on ANE -> projected audio embeddings
2 -> ONNX Runtime int4 decoder on CPU -> transcript1cd SpeechKit
2swift run dev-check
3swift test
4
5# Transcribe a local file with the bundled model assets:
6swift run -c release asrkit-cli .. --file /path/to/audio.wav
7
8# Repeat one local file to watch stability and footprint:
9swift run -c release asrkit-cli .. --file /path/to/audio.wav --repeat 10dev-check is the fastest smoke test and does not require model inference.
asrkit-cli --file loads dist/ASRModels.bundle and runs end-to-end
transcription on macOS.config.json.
If you automate downloads with snapshot_download or hf_hub_download, include
the root config.json in the request path so repository downloads are counted.ASRDemo on a physical iPhone,
record one utterance, then tap Repeat Last 10x while watching the in-app
System panel. Simulator memory is useful for trends only; it is not
equivalent to iPhone memory pressure or Jetsam behavior.https://huggingface.co/AutoArk-AI/Audio8-ASR-0.1B-iOS-ANE.