• About Us
  • Disclaimer
  • Contact Us
  • Privacy Policy
Friday, August 21, 2026
mGrowTech
No Result
View All Result
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions
No Result
View All Result
mGrowTech
No Result
View All Result
Home Al, Analytics and Automation

Meet S1-mini: Superwhisper’s 462 MB Open-Weights Text Normalizer That Turns Raw ASR Transcripts Into Clean Written Text

Josh by Josh
August 21, 2026
in Al, Analytics and Automation
0
Meet S1-mini: Superwhisper’s 462 MB Open-Weights Text Normalizer That Turns Raw ASR Transcripts Into Clean Written Text


Superwhisper has released the S1 family of models: S1-Voice, S1-Language, and S1-mini. S1-Voice is a cloud speech-to-text model, and S1-Language is a cloud instruction-following model for cleanup and formatting. The one that is quite interesting outside the app is S1-mini, released with open weights on Hugging Face. S1-mini is a 0.6B text normalizer, not a transcriber and not a chat model. It sits after automatic speech recognition and rewrites raw transcripts as clean written text: fillers removed, self-corrections resolved to what the speaker landed on, punctuation and capitalization applied, and spoken numbers, dates, currency, and email addresses rendered in written form. It is fine-tuned from Qwen/Qwen3-0.6B, covers English only in release v1, and is steered entirely by a three-axis control line placed above the transcript. Superwhisper reports 94.8% token accuracy on a held-out set of 7,519 cases, measured greedy on the quantized build.

Is it deployable?

Yes, but only S1-mini. S1-mini is published on Hugging Face under Apache 2.0 plus a naming clause. S1-Voice and S1-Language are Superwhisper-hosted services, so they are consumable, not self-hostable.

READ ALSO

New AI Predicts Your Next Response From Your Past Conversations – Unite.AI

Auditing Preference Biases and Fine-Tuning Language Models with Direct Preference Optimization on Anthropic HH-RLHF Using TRL and LoRA

  • Company level: Any level. The Q4_K_M GGUF build is a 462 MB file that runs on a laptop CPU. Solo developers can ship it inside a desktop app. Enterprises can run it behind a VPC where audio transcripts cannot leave the network.
  • Industries: Healthcare and clinical documentation, legal, financial services, customer support, developer tooling, accessibility and live captioning.
  • Applications: Dictation apps, meeting-notes tools, live captioning, voice-driven editors, voice-to-CRM entry, and any pipeline that turns raw ASR output into text a human will read.

What S1-mini does

S1-mini is a text normalizer, not a transcriber and not a chat model. It sits after automatic speech recognition:

audio → ASR (Whisper, Parakeet, …) → S1-mini → clean text

It removes filler words, resolves false starts and self-corrections to the value the speaker landed on, applies punctuation and capitalization, and renders spoken numbers, dates, times, currency, and email addresses in written form. Say “support at superwhisper dot com” and you get [email protected].

The model is fine-tuned from Qwen/Qwen3-0.6B. It has 596M unique parameters (0.44B non-embedding), 28 layers, 16 query heads and 8 key/value heads with GQA, and BF16 weights. The Hub sidebar reports 0.8B because the tied embedding is stored twice; the card explains the discrepancy explicitly. Release v1 covers English only, and recommended input is roughly 1,000 tokens.

The control line is the entire interface

S1-mini takes a fixed system prompt, then a control line, then the raw transcript:

[Styling: <value>] [Structure: <value>] [Context: <value>]
<raw transcript>

Styling takes casual, semi-casual, semi-formal, or formal. Structure takes prose or lists. Context takes general or email. All three axes are independent, and every combination was trained. Send values outside those sets, or reword the system prompt, and output can degrade or garble. Note the small mismatch worth knowing: the Superwhisper app exposes a five-stop tone slider that adds a “balanced” preset, while the open weights document four trained Styling values.

The model is also constrained by design. It does not add content you did not say, correct facts, soften profanity, or rewrite dialect. Filler-only input returns an empty string, and integrations should treat that as a valid result.

Two settings that break most integrations

First, enable_thinking=False is required. The chat template is Qwen3’s, unchanged, and Qwen3 defaults to thinking on. S1-mini was trained with thinking off, so the assistant turn must open with an empty <think> block. Omit the flag and you usually get no usable output at all.

Second, decode greedily. generation_config.json ships do_sample: false. The GGUF builds still carry Qwen3’s inherited temp = 0.6, top_p = 0.95, and top_k = 20 metadata, so pass temperature 0 explicitly on every request. In llama.cpp, use --jinja with --chat-template-kwargs '{"enable_thinking":false}' rather than --reasoning-budget 0, which degrades output.

Reported evaluation

Superwhisper evaluated S1-mini on a held-out set of 7,519 cases across 104 transcripts. Token accuracy is 94.8%, measured greedy on the Q4_K_M build, with a text-edit error rate of 11.6%. On email-formatted text it identifies the greeting line 99.3% of the time and the sign-off 97.9%. It matches the correct output structure, list versus paragraph, 97.6% of the time, and produces exact email addresses in 92% of cases. Fewer than 1% of generations show looping or truncation, and the model correctly withholds output 98.6% of the time when nothing should be transcribed. These are vendor-reported numbers on an internal test set, not third-party results.

The two cloud models

S1-Voice is the hosted speech-to-text model. Superwhisper reports transcription up to 46x faster than speaking time, with most dictations under 30 seconds appearing 0.32 seconds after you stop. Across eight datasets including meeting audio and earnings calls, it averages 6.8% word error rate and drops to 2.2% on LibriSpeech. Superwhisper says that 6.8% average was the lowest of 15 models it tested, and that S1-Voice scored 83 out of 100 on its blended metric against WisprFlow’s 76.

S1-Language is the hosted instruction-following model for cleanup, formatting, and summarization, and it appears in the model picker alongside models from Anthropic, OpenAI, and Groq. The recommended defaults are Cohere Transcribe plus S1-mini offline, or S1-Voice plus S1-Language in the cloud.

Interactive explainer

The embed below lets you switch each control-line axis and watch the output change. Every input/output pair is taken verbatim from the model card.

Key Takeaways

  • S1-mini is a 0.6B open-weights text normalizer for ASR output, not a transcriber or chat model.
  • The Q4_K_M GGUF is 462 MB and runs on a laptop CPU, so on-device deployment is realistic.
  • A fixed system prompt plus a three-axis control line is the only steering mechanism.
  • enable_thinking=False and temperature 0 are mandatory; most integration bugs trace to these.

Check out the Model Weights and Technical Details. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us


Michal Sutter is a data science professional with a Master of Science in Data Science from the University of Padova. With a solid foundation in statistical analysis, machine learning, and data engineering, Michal excels at transforming complex datasets into actionable insights.



Source_link

Related Posts

New AI Predicts Your Next Response From Your Past Conversations – Unite.AI
Al, Analytics and Automation

New AI Predicts Your Next Response From Your Past Conversations – Unite.AI

August 20, 2026
Auditing Preference Biases and Fine-Tuning Language Models with Direct Preference Optimization on Anthropic HH-RLHF Using TRL and LoRA
Al, Analytics and Automation

Auditing Preference Biases and Fine-Tuning Language Models with Direct Preference Optimization on Anthropic HH-RLHF Using TRL and LoRA

August 20, 2026
Ramp Opens Router.com Model Gateway With Free Routing Through 2026 – Unite.AI
Al, Analytics and Automation

Ramp Opens Router.com Model Gateway With Free Routing Through 2026 – Unite.AI

August 19, 2026
Meet SAM (Sovereign Agent Mesh): A Zero-Config, Zero-Trust P2P Network for AI Agents
Al, Analytics and Automation

Meet SAM (Sovereign Agent Mesh): A Zero-Config, Zero-Trust P2P Network for AI Agents

August 19, 2026
GLM-5.3 Scores 60 on Artificial Analysis Intelligence Index, Matching Kimi K3 – Unite.AI
Al, Analytics and Automation

GLM-5.3 Scores 60 on Artificial Analysis Intelligence Index, Matching Kimi K3 – Unite.AI

August 19, 2026
When AI art has no author: Study finds generated images often can’t be traced to training data | MIT News
Al, Analytics and Automation

When AI art has no author: Study finds generated images often can’t be traced to training data | MIT News

August 19, 2026
Next Post
“Get the Flock out”: The growing backlash to AI Flock cameras, explained

“Get the Flock out”: The growing backlash to AI Flock cameras, explained

POPULAR NEWS

Trump ends trade talks with Canada over a digital services tax

Trump ends trade talks with Canada over a digital services tax

June 28, 2025
15 Trending Songs on TikTok in 2025 (+ How to Use Them)

15 Trending Songs on TikTok in 2025 (+ How to Use Them)

June 18, 2025
Communication Effectiveness Skills For Business Leaders

Communication Effectiveness Skills For Business Leaders

June 10, 2025
Comparing the Top 7 Large Language Models LLMs/Systems for Coding in 2025

Comparing the Top 7 Large Language Models LLMs/Systems for Coding in 2025

November 4, 2025
App Development Cost in Singapore: Pricing Breakdown & Insights

App Development Cost in Singapore: Pricing Breakdown & Insights

June 22, 2025

EDITOR'S PICK

The Scoop: Open letter on AI safeguards puts pressure on tech companies to respond

October 25, 2025
Researchers broke every AI defense they tested. Here are 7 questions to ask vendors.

Researchers broke every AI defense they tested. Here are 7 questions to ask vendors.

January 25, 2026
Craft Food Roblox Nachos Recipe

Craft Food Roblox Nachos Recipe

February 18, 2026
Why Your Personal Story Is Your Most Powerful Branding Asset

Why Your Personal Story Is Your Most Powerful Branding Asset

April 11, 2026

About

We bring you the best Premium WordPress Themes that perfect for news, magazine, personal blog, etc. Check our landing page for details.

Follow us

Categories

  • Account Based Marketing
  • Ad Management
  • Al, Analytics and Automation
  • Brand Management
  • Channel Marketing
  • Digital Marketing
  • Direct Marketing
  • Event Management
  • Google Marketing
  • Marketing Attribution and Consulting
  • Marketing Automation
  • Mobile Marketing
  • PR Solutions
  • Social Media Management
  • Technology And Software
  • Uncategorized

Recent Posts

  • Best Marketing Automation Software for Small Business 2026
  • iOS 27 ASO: What Apple’s App Store Update Changes
  • “Get the Flock out”: The growing backlash to AI Flock cameras, explained
  • Meet S1-mini: Superwhisper’s 462 MB Open-Weights Text Normalizer That Turns Raw ASR Transcripts Into Clean Written Text
  • About Us
  • Disclaimer
  • Contact Us
  • Privacy Policy
No Result
View All Result
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions