Close Menu
NCIJ Network NCIJ Network
    What's Hot

    How landscape gardening is being electrified

    August 21, 2026

    Rust Supply Chain Attack Puts Build-Time Malware in Crates with 245 Million Downloads

    August 21, 2026

    Datavault wants to buy a bank and fund it with $35 million after reporting $1.4 million cash

    August 21, 2026
    Facebook X (Twitter) Instagram
    Trending
    • How landscape gardening is being electrified
    • Rust Supply Chain Attack Puts Build-Time Malware in Crates with 245 Million Downloads
    • Datavault wants to buy a bank and fund it with $35 million after reporting $1.4 million cash
    • Why Epstein-Barr is the ‘everything virus’
    • More than 50 Sloths Died at a Florida Wildlife Attraction. Officials Say No Crime Occurred.
    • International students bring much more than money to the UK | Universities
    • Claim Italian town cages politicians, dunks them in freezing river blurs fact and fiction
    • US charges woman for allegedly plotting attack on New York State Capitol | Crime News
    • About
      • Our Team
      • Editorial Policy
      • Editorial Independence
      • International Support
    • Trust & Standards
      • AI Usage Policy
      • Conflict of Interest Policy
      • Corrections Policy
      • Ethics Policy
      • Fact-Checking Policy
      • Source Protection
    • Get Involved
      • Guide for Sources
      • Support Independent Journalism
    • Legal
      • Cookie Policy
      • Privacy Policy
      • Terms of Use
    Facebook X (Twitter) Instagram
    NCIJ Network NCIJ Network
    Friday, August 21
    • Home
    • World
    • Ai
    • Business
    • Politics
    • Health
    • Crypto
    • Science
    • Technology
    • Cybersecurity
    • Defense & Security
    • Economy
    • Energy
    • Europe
    • More
      • Fact Check
      • Investigations
      • Opinion & Analysis
      • Environment
    NCIJ Network NCIJ Network
    Home»Artificial Intelligence

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

    NCIJ NETWNCIJ NETWORKBy NCIJ NETWNCIJ NETWORKAugust 20, 2026 Artificial Intelligence No Comments7 Mins Read
    Share
    Facebook Twitter LinkedIn Pinterest Email

    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.

    • 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: ] [Structure: ] [Context: ]
    

    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 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.

    ASR clean Meet Normalizer OpenWeights Raw S1mini Superwhispers Text Transcripts turns written
    NCIJ NETWNCIJ NETWORK
    • Website

    Keep Reading

    Meet UPDF: A Lightweight Adobe Alternative Built for the Agentic Era

    Liquid AI Releases LFM2.5-DSpark Draft Models That Deliver Up to 3.18x Faster Decoding Without Changing Model Outputs

    Bitcoin ETFs Add $1B As Investor Sentiment Turns Bullish

    HoneyBook bets on agentic AI to streamline small business operations with its new Claude connector

    AI data centre regulation without a new law: the US template others can copy

    Amazon’s Prime Air autonomous drones to reach 500 US cities

    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    How landscape gardening is being electrified

    August 21, 2026

    Rust Supply Chain Attack Puts Build-Time Malware in Crates with 245 Million Downloads

    August 21, 2026

    Datavault wants to buy a bank and fund it with $35 million after reporting $1.4 million cash

    August 21, 2026

    Why Epstein-Barr is the ‘everything virus’

    August 21, 2026
    Latest Posts

    New Dysphoria DDoS botnet spreads to 200k devices worldwide

    July 28, 2026

    OpenAI’s biggest threat may just be open AI

    July 28, 2026

    6 Takeaways From Michigan’s Senate Debate Between Abdul El-Sayed and Haley Stevens

    July 28, 2026

    Subscribe to News

    Get the latest sports news from NewsSite about world, sports and politics.

    NCIJ Network is an independent digital news platform delivering trusted investigative journalism, European and global news, in-depth analysis, and fact-based reporting with accuracy, transparency, and integrity.

    Facebook X (Twitter) Instagram Pinterest YouTube

    How landscape gardening is being electrified

    August 21, 2026

    Rust Supply Chain Attack Puts Build-Time Malware in Crates with 245 Million Downloads

    August 21, 2026

    Datavault wants to buy a bank and fund it with $35 million after reporting $1.4 million cash

    August 21, 2026

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    Type above and press Enter to search. Press Esc to cancel.