Views
No views yet
coreai-torch (LLMs: coreai.llm.export) into .aimodel bundles that run on the GPU or the Neural Engine, e.g. Qwen3-8B 4-bit decodes at 94 tok/s on an M4 Max GPU, MLX 90 under the same protocol (apple-silicon-llm-bench, macOS 27 beta, 2026-06).Mirror ofmlboydaisuke/Parakeet-TDT-0.6B-CoreAI— the canonical repo (CoreAI Model Zoo). Updates land there first.
nvidia/parakeet-tdt-0.6b-v3 (cc-by-4.0, 600M)
converted to Apple Core AI .aimodel — the first transducer / TDT (RNN-T family) ASR in the
zoo. Transcribes ≤~29 s clips in 25
European languages as three stateless graphs + a host greedy loop (no LLM runtime).parakeet_encoder_float16_L2885.aimodel — FastConformer encoder + projector (fp16, ~1.2 GB),
mel[1,128,2885] → enc_proj[1,361,640].parakeet_predict_float32.aimodel — embedding → 2-layer LSTM → projector (fp32),
token[1,1],h,c[2,1,640] → dec_out[1,640],h',c'.parakeet_joint_float32.aimodel — head(relu(enc_frame+dec_out)) (fp32),
→ token_logits[1,8193], dur_logits[1,5].tokenizer.json (+ tokenizer_config.json), mel_filters_128x257_f32.bin (librosa-slaney).ParakeetForTDT reference, and again token-exact
through the Swift CoreAIKit KitParakeetModel. blank 8192 · durations [0,1,2,3,4] · 16 kHz.
1git clone https://github.com/john-rocky/coreai-kit
2open coreai-kit/Examples/Transcribe/Transcribe.xcodeproj
3# → Run, then pick "Parakeet-TDT 0.6B v3" in the model picker
4
5# agents / headless (macOS):
6cd coreai-kit/Examples/Transcribe
7swift run transcribe-cli --model parakeet-tdt-0.6b-v3 --audio sample.wav1import CoreAIKit
2
3let transcriber = try await KitTranscriber(catalog: "parakeet-tdt-0.6b-v3")
4let samples = try AudioFile.pcm16kMono(url) // any wav/m4a/mp3 → 16 kHz mono Float
5let result = try await transcriber.transcribe(samples: samples)
6// result.text (25 EU languages)Examples/Transcribe/Sources/QuickStart.swift
— this exact code as one typed function, no UI; both the runner's GUI and its CLI call it.
Recording? MicRecorder (kit API) captures mic audio as 16 kHz mono [Float] — the record
button and permission prompt are your app's own chrome.https://github.com/john-rocky/coreai-kit → product CoreAIKitNSMicrophoneUsageDescription — only if you recorddownloadProgress callback)1let parakeet = try await KitParakeetModel(model: .parakeetTDT)
2let result = try await parakeet.transcribe(samples: pcm16kMono) // 16 kHz mono Float