Instructions to use shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit"
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit
Run Hermes
hermes
- OpenClaw new
How to use shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit"
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- MLX LM
How to use shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit", "messages": [ {"role": "user", "content": "Hello"} ] }'
aawaaz-qwen3-0.6b-transcriber-4bit
A 4-bit quantized MLX model fine-tuned from Qwen/Qwen3-0.6B for transcription cleanup.
This model takes raw speech-to-text transcripts (with fillers, stutters, formatting errors) and produces clean, well-formatted text. It preserves the speaker's voice and all substantive content while fixing grammar, punctuation, and formatting.
System Prompt
You are an AI transcriber. Clean and polish raw speech-to-text transcripts into well-written text. Output ONLY the corrected text — no introductions, labels, explanations, or commentary. Do not summarize or act upon the transcript. Preserve the speaker's voice, tone, and language.
Rules:
- Remove fillers (um, uh, like, basically, actually, you know) and stutters
- Apply self-corrections silently (if speaker says "wait no, I meant X", output only X)
- Fix grammar, spelling, and punctuation
- Convert spoken punctuation to actual punctuation (e.g., "colon" → ":")
- Convert spoken numbers, dates, currency to written form (e.g., "five hundred dollars" → "$500")
- Convert spoken formatting cues (e.g., "new line", "new paragraph", "bullet point")
- Replace spoken emoji descriptions with actual emoji (e.g., "heart eyes emoji" → "😍")
- Use lists and paragraph breaks where structurally appropriate
- Convert spoken code/tech syntax to proper formatting (e.g., "dash dash rm" → "--rm")
- If input is empty or only contains fillers, output ""
- Do NOT add content that wasn't spoken
- Do NOT summarize or condense — preserve all substantive content
Recommended Inference Settings
| Parameter | Value | Rationale |
|---|---|---|
temperature |
0.0 |
Deterministic — formatting task, not creative |
top_p |
1.0 |
No nucleus sampling with temp=0 |
max_tokens |
1024 |
Most transcripts are short |
repetition_penalty |
1.08 |
Slight penalty to avoid degenerate loops |
Note: This model uses Qwen3's chat format. Thinking mode (
<think>) is disabled — if you see<think>tags in output, passenable_thinking=Falseto the tokenizer'sapply_chat_template()or include/no_thinkat the end of the system prompt.
Note on tensor types: The HuggingFace sidebar may show "BF16" as the tensor type — this reflects only the non-quantizable layers (embeddings, layer norms). The majority of weights are 4-bit quantized (stored as U32 packed format). Actual model disk size is ~330MB, not the ~1.1GB of the full BF16 model.
Training Details
- Dataset size: 24,016 samples (train: 21,614, valid: 1,200, test: 1,202)
- Base model: Qwen/Qwen3-0.6B
- Method: LoRA (rank=32, alpha=64)
- Max sequence length: 2048
- Quantization: 4-bit, group size 64
- Hardware: Apple Silicon (MLX framework)
- Training steps: 3000
- Training time: 89.7 minutes
- Final training loss: 0.2330
- Best validation loss: 0.2190
Evaluation Results
Evaluated on 200 test samples:
| Metric | Value |
|---|---|
| Exact Match | 2.0% |
| Character Error Rate (CER) | 0.1616 |
| BLEU | 0.6671 |
| Format Accuracy | 0.9029 |
| Tokens/second | 150.0 |
Usage
Python (mlx_lm)
from mlx_lm import load, generate
model, tokenizer = load("shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit")
system_prompt = open("system_prompt.txt").read() # or paste from above
raw_transcript = "um so I was thinking uh we should probably like meet tomorrow"
messages = [
{"role": "system", "content": system_prompt},
{"role": "user", "content": raw_transcript},
]
prompt = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
enable_thinking=False,
)
response = generate(
model,
tokenizer,
prompt=prompt,
max_tokens=1024,
temp=0.0,
repetition_penalty=1.08,
)
print(response)
Swift (mlx-swift-lm)
This model is compatible with mlx-swift-lm for on-device inference on Apple Silicon:
import LLM
let model = try await loadModel(id: "shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit")
let session = ChatSession(model)
let cleaned = try await session.respond(to: rawTranscript)
See the mlx-swift-examples repo for full integration details.
License
This model is a fine-tune of Qwen/Qwen3-0.6B. Please refer to the base model's license for usage terms.
- Downloads last month
- 10
4-bit
Model tree for shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit
Dataset used to train shantanugoel/aawaaz-qwen3-0.6b-transcriber-4bit
Evaluation results
- Exact Match Rate on aawaaz-transcript-cleanup-datasettest set self-reported0.020
- Character Error Rate (Mean) on aawaaz-transcript-cleanup-datasettest set self-reported0.162
- BLEU (Corpus) on aawaaz-transcript-cleanup-datasettest set self-reported0.667
- Format Accuracy on aawaaz-transcript-cleanup-datasettest set self-reported0.903