惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
爱范儿
爱范儿
美团技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
博客园_首页
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
V
Visual Studio Blog
Jina AI
Jina AI
博客园 - Franky
量子位
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
M
MIT News - Artificial intelligence

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Was Asked to Add a Simple Classifier to a Website. Then...
Pavel · 2026-06-03 · via DEV Community

A client asked me for a simple thing.

Not ChatGPT.

Not an agent.

Not a multimodal assistant that can explain invoices, generate React components, and write poetry in three languages.

Just a small classifier embedded into a website.

The job sounded boring in the best possible way:

take some text, classify it, return a result, keep it fast.

So I started looking at the usual solutions.

And then I had one of those moments where you stop reading documentation, lean back, and ask:

Are we seriously doing this?

Because the answer I kept running into looked like this:

download a huge runtime

download a huge model

initialize a big ML stack

then classify one small piece of text

In one setup, the path was getting close to something like 250 MB per user.

For a simple classifier.

On a website.

From a server.

Every time.

No. Sorry. That is insane.

The problem

The web has a strange habit now.

You ask for one small AI feature, and the answer is often:

bring the entire construction company.

But sometimes I do not need a construction company.

I need one person on the construction site.

One task.

One tool.

One result.

This is especially true for simple classification, embeddings, semantic search, routing, filtering, ranking, small local decisions.

Not every AI problem needs an LLM.

Not every website needs a full inference engine.

Not every user should pay a 250 MB download tax because we were too lazy to think smaller.

So I started digging

I wanted something simple:

  • runs in the browser
  • does not require a server for inference
  • small enough to actually ship
  • works with transformer-style models
  • can tokenize text
  • can run BERT-like forward inference
  • can produce embeddings or classification input
  • does not bring ONNX Runtime, Candle, ndarray, or half the internet with it

At first I thought:

“Surely someone already made the tiny version.”

There are great tools out there.

Transformers.js is powerful.

ONNX Runtime Web is powerful.

Candle is powerful.

But that was exactly the problem.

They are powerful because they are general.

I did not need general.

I needed narrow.

I needed small.

So I built one.

Introducing wasmicro

wasmicro is my attempt at a tiny transformer inference runtime for the web.

Current WASM bundle size:

~94 KB

Enter fullscreen mode Exit fullscreen mode

Not 94 MB.

94 KB.

The project is here:

https://github.com/Xzdes/wasmicro

Live demo:

https://xzdes.github.io/wasmicro/

It is not perfect.

It is not finished.

It is still being tested.

But it already does the thing I needed: run a small transformer-style pipeline in the browser without shipping a giant runtime.

What it does today

Right now wasmicro supports:

  • tiny owned tensors
  • safetensors loading
  • WordPiece tokenizer
  • BERT encoder forward pass
  • mean pooling for embeddings
  • WASM bindings
  • SIMD128 matmul path
  • i8/u8/q4 quantized weight types
  • converter tool for HuggingFace models

The design rule is simple:

if it does not make the WASM bundle smaller, faster, or useful for a transformer architecture, it probably does not belong.

No training.

No autograd.

No optimizer.

No general tensor framework.

No “module zoo”.

Just forward inference.

Why not just use a big runtime?

Because sometimes the runtime is bigger than the problem.

If I am building a serious AI application, yes, I will use serious AI infrastructure.

If I need WebGPU, many architectures, image models, audio models, generation, pipelines, fallback backends, and broad model support, then I should use the big tools.

But if I need a small classifier embedded into a website?

I do not want the entire AI ecosystem.

I want the smallest useful thing.

The difference is like hiring:

  • a whole construction company
  • or one worker with the correct tool

The web keeps giving me the company.

I needed the worker.

The current numbers

The WASM bundle is currently around:

94 KB after wasm-opt -Oz

Enter fullscreen mode Exit fullscreen mode

The hard size ceiling I set for myself is:

250 KB

Enter fullscreen mode Exit fullscreen mode

The default library dependency set is intentionally tiny.

The project avoids pulling in things like:

  • ndarray
  • candle
  • rayon
  • serde_json
  • chrono
  • getrandom

The converter CLI can use heavier dependencies, because it runs on a desktop machine and never ships to the browser.

The browser runtime stays small.

Is it faster?

That depends what “fast” means.

If you mean maximum throughput on GPU against a fully optimized WebGPU runtime, probably not.

That is not the fight.

The fight I care about is:

  • cold start
  • first useful result
  • small runtime
  • simple embedding/classification tasks
  • CPU/WASM path
  • no huge framework download

I want to compete on:

time to load
time to first embedding
runtime size
simple integration

Enter fullscreen mode Exit fullscreen mode

Not on “who supports 200 model architectures”.

That is a different game.

What is missing

A lot.

This is still early.

The project still needs:

  • better public benchmarks
  • easier model download story
  • more optimized attention path
  • less allocation during forward
  • better q4 loading for BERT
  • cleaner zero-config examples
  • more browser measurements
  • more real-world classification demos

Also, the live demo currently expects you to provide model files.

That is not ideal.

But it is already enough to prove the point:

You do not always need a massive runtime to do a small AI job.

The real lesson

This started as a simple client task.

“Add a classifier to a website.”

Then I looked at the common path and saw the cost.

And I could not accept that the answer to a small feature was:

ship hundreds of megabytes and hope nobody notices.

Users notice.

Browsers notice.

Mobile connections notice.

Cold start notices.

So I built the smaller thing.

Not because it is perfect.

Because the alternative felt wrong.

Final thought

AI tooling is amazing right now.

But we are also getting lazy.

We reach for the biggest tool because it is convenient.

Sometimes that is correct.

Sometimes it is absurd.

If the job needs a crane, use a crane.

If the job needs one person with a hammer, do not send a construction company.

wasmicro is my attempt at the hammer.

Small.

Narrow.

Still rough.

But already useful.

GitHub:

https://github.com/Xzdes/wasmicro

Demo:

https://xzdes.github.io/wasmicro/