Loading video...

Video Failed to Load

Go Home

A researcher went on vacation and left a model training. When they came back, it had suddenly solved modular arithmetic perfectly - not by memorizing answers, but by reinventing trigonometric identities from scratch. Nobody told it to. This is grokking - the moment an LLM stops memorizing and starts...

36,272 views • 5 days ago •via X (Twitter)

0 Comments

No comments available

Comments from the original post will appear here

Related Videos

Anthropic's new model is extraordinary and it just revealed a problem that most enterprise AI buyers have not fully reckoned with yet (Save this), The model is genuinely impressive, and Chamath Palihapitiya assessment is that Anthropic continues to push the frontier harder than almost anyone. But that same update also showed their hand on something that changes the risk calculus for every business using Claude. Anthropic's new architecture stores every prompt you send for 30 days, no exceptions, not even for enterprise customers with zero-data retention agreements. The mechanism works like this, Anthropic now evaluates your prompt before generating output, deciding what it will and will not respond to, which means your query gets filtered before you even see a response. For individual users, that introduces a meaningful risk of censorship. For companies, Chamath says it is almost a non starter, and the reason is not just the data retention itself, it is the exposure that comes from operating at scale inside a large organization. A downstream scientist using the Claude APIs could accidentally trip a filter without knowing it, a business executive inside your company could trip it, and a molecular biology researcher could trip it and all of a sudden the company gets silently cut off from a tool it has embedded into critical workflows, with no warning and no recourse. Chamath gives Anthropic credit for being honest about how the system works, saying they tell the truth but notes that in this case the truth is not good. What this moment actually signals is a structural shift in how serious companies need to think about AI governance, because the question is no longer just which model performs best on benchmarks. It is who controls the model, who is learning from your data, and whether you are comfortable with a single point of failure sitting at the center of your competitive advantage. The answer for most enterprises will be broad model diversity, tighter governance frameworks and a serious reckoning with what it means to run mission-critical workflows through a third party that reserves the right to cut you off. Anthropic built a remarkable model and told the truth about how it works, the market's job now is to decide whether that transparency is enough to offset what the truth actually says.

Milk Road AI

30,090 views • 2 months ago

THIS MIGHT BE THE #1 OPEN-SOURCE REPO FOR CLAUDE CODE RIGHT NOW. IT GIVES CLAUDE A MEMORY AND SLASHES YOUR TOKEN COST ON EVERY QUESTION The repo is safishamsi/graphify, a free open-source skill that turns any codebase into a knowledge graph Claude Code can read instantly. Instead of grepping through your files every session, Claude gets a map of how everything connects The problem it fixes: Every time you ask Claude Code about a big repo, it does the same thing, greps through dozens of files like a brute-force Ctrl+F, blows through your context window, and sometimes still misses the answer hiding in a file nobody searched. Claude Code has no memory of how your project is structured. Every session starts from zero What it does: It maps your entire codebase into a knowledge graph, capturing not just which files exist, but which functions depend on which, which modules are central, and which files cluster around the same concern. Claude queries the map instead of scanning files How it works, three passes: 1. Code structure, free and local. Tree-sitter parses your files and pulls out classes, functions, imports and call graphs. No LLM, no tokens, just your actual code mapped deterministically 2. Audio and video, if you have them. Transcribed locally and folded into the graph 3. Docs, papers, images. Here an LLM does semantic analysis, figuring out what each document means and where it fits. Only the meaning gets sent up, never your raw source It saves you money: Normally a question about a big repo makes Claude spawn explore agents that scan file after file, eating your context window and your token budget before you get an answer. With the graph already built, Claude queries the map instead of re-reading the codebase every time. Same answer, a fraction of the tokens. The graph only gets built once, then a hook rebuilds it after each commit for free, so you never pay that scanning cost again. The bigger the repo, the bigger the gap The best parts: it's a skill, so once installed Claude knows when to use it without you memorizing commands. It works on non-code folders too, point it at docs or notes and it can spin up an Obsidian vault How to add it to your Claude: 1. Install Claude Code if you haven't: npm install -g Paul Jankura-ai/claude-code 2. Add the skill: claude skill add safishamsi/graphify 3. Open your project folder and run /graphify . to build the graph 4. Optional, make it automatic: graphify hook install so the graph rebuilds after every commit That's it. Ask Claude about your repo and it reads the map instead of burning tokens on a file hunt Bookmark this

Yarchi

56,177 views • 2 months ago

CLAUDE CODE JUST SHIPPED THE FEATURE THAT SOLVES THE BIGGEST PROBLEM EVERY BUILDER HAS WITH AI AGENTS. The problem: Claude starts a task, gets distracted by a sub-problem, goes down a rabbit hole, and never finishes the original thing you asked for. The solution: /goal One command. You set the goal at the start of the session. Claude now has a north star it checks against every action it takes. Not just at the beginning. Throughout the entire session. Every time Claude is about to do something it asks: does this action move me toward the goal the user set or am I drifting? If it is drifting it corrects. If it completes a sub-task it returns to the primary goal. If it hits a blocker it reports back instead of spending 45 minutes solving the wrong problem. This sounds like a small feature. It is not. The reason most people do not trust Claude Code for long autonomous runs is not capability. It is reliability. A Claude Code session that reliably finishes what it started is worth 10 times more than one that is more capable but wanders. /goal is the feature that makes long autonomous sessions reliable. Set the goal. Let it run. Come back to a finished result. Not a result that got 70% done before Claude decided the sub-problem was more interesting. Done. The builders running overnight agent sessions are going to use this command on everything from today forward. Bookmark this. Follow CyrilXBT for every Claude Code feature the moment it ships.

CyrilXBT

19,586 views • 3 months ago