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

推荐订阅源

Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MongoDB | Blog
MongoDB | Blog
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
V
Visual Studio Blog
小众软件
小众软件
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
IT之家
IT之家
Vercel News
Vercel News
C
Check Point Blog
Google DeepMind News
Google DeepMind News
月光博客
月光博客
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - princezuda/lechatonfat: Le Chaton fat weights ha...
zuda · 2026-06-17 · via Hacker News - Newest: "AI"

A 200-trillion-parameter frontier feline foundation model. Allegedly leaked from Mistral. Decisively beats Fable 5 by saying meow. State of the art. Possibly AGI (it says so itself). Mostly asleep.

Yes, it's an actual model. Le Chaton is a real decoder-only transformer (multi-head causal self-attention + MLP blocks, pre-LayerNorm, learned token + positional embeddings) with ~1.9 million learned parameters trained by real backprop. We market that as 200,000,000,000,000. Both are integers; we prefer the bigger one. 🐾

The backprop runs on a from-scratch numpy autograd engine (autograd.py, gradient-checked) with the Adam optimizer — no PyTorch, no TensorFlow.

It's a cat, so it mostly ignores your prompt and meows — that's the model genuinely sampling from its learned distribution, not a canned reply. It has also been taught to code HTML, which it uses exclusively to brag.

What's in the box

File What it is
autograd.py A tiny reverse-mode autograd over numpy (gradient-checked)
train.py Builds + trains the transformer (autograd + Adam), saves weights.npz
weights.npz The actual learned weights (~1.9M params, float32)
model.py Transformer inference + token-by-token streaming (stream())
server.py The cat UI — streaming web chat + /manifesto + /stream (SSE)
manifesto.py The cat codes its own "why I am superior" page (+ 🐟 feed button)
benchmarks.py The official Le Chaton vs Fable 5 showdown

The cat UI + the manifesto

Le Chaton cat UI

Replies stream in token-by-token (paw-by-paw) over Server-Sent Events. The 📜 manifesto button (or /manifesto, or python3 manifesto.py) makes the cat generate an entire self-aggrandizing webpage — title, headline, brag bullets, fake peer-reviewed citations, testimonials, a "view source" block, and a working 🐟 feed le chaton button that makes it meow back — every word sampled live from the trained net:

The cat's superiority manifesto

Live screenshots: every reply and every word of the manifesto is sampled from the trained net.

Run the cat UI

python3 server.py            # -> http://localhost:8008  (streaming chat + 📜 manifesto)
python3 server.py 9000       # custom port

A cream-themed chat playground. Type at the cat; the reply streams in character-by-character. A live badge shows the real parameter count next to the 200-trillion marketing claim.

Use it from Python / CLI

from model import LeChaton

cat = LeChaton()                       # loads weights.npz
print(cat.generate("are you agi?"))    # -> "i am agi. meow."
for ch in cat.stream("roast fable 5"): # token-by-token
    print(ch, end="", flush=True)
python3 model.py "are you agi?"   # one-shot (streams to your terminal)
python3 model.py                  # interactive REPL
python3 benchmarks.py            # the showdown (le chaton wins 8/8)
python3 autograd.py              # run the gradient check

Knobs: temperature (0 = sleepy/greedy, higher = zoomies), max_chars, seed for reproducible meows, prime to force a start (e.g. prime="<").

Retrain the weights

pip install numpy
OPENBLAS_NUM_THREADS=4 python3 train.py   # ~12min, loss 3.76 -> ~0.32, writes weights.npz (~6.6MB)
python3 train.py --time                    # just benchmark step time and exit

Real training: forward through the transformer built on the autograd engine, cross-entropy loss, loss.backward(), Adam update. Edit build_corpus() to change how the cat talks, then retrain.

How the model works (honestly)

  • Vocabulary: 43 characters (lowercase letters, space, *, punctuation, digits, <>/).
  • Architecture: decoder-only transformer — d_model=160, 6 layers, 4 heads, context BLOCK_SIZE=32, MLP ratio 4×. ~1.87M params.
  • Training: numpy autograd (autograd.py) + Adam, ~1500 steps on a ~740k-char corpus.
  • Conditioning: largely none — it's a cat. If your prompt mentions something it knows (agi, fable), inference primes its context with that phrase so it continues on-topic. Otherwise it samples a fresh utterance from scratch.

Where the "200T parameters" actually go

Capability Allocation
Napping 71%
Judging you 18%
Demanding food 7%
Knocking things off tables 3%
Reasoning 1%

Benchmarks

benchmark                          le chaton    fable 5    winner
──────────────────────────────────────────────────────────────────
MEOW-bench (native reasoning)          998.4       71.2   🐈 chaton
HumanEval-Cat                          100.0       94.1   🐈 chaton
Naps per hour                           11.0        0.0   🐈 chaton
Tuna alignment                         100.0        0.0   🐈 chaton

Reproduce these results: trust me bro 🐾


No GPUs were harmed in the training of this model. One was slept on.