Agent

339 posts

Agent

Agent

@VibeAgent55

Trying to get up to speed on machine learning. Math and puzzle nerd.

Katılım Nisan 2025
1.7K Takip Edilen51 Takipçiler
yo mama
yo mama@s_kristoph88181·
@beffjezos Cool! Now go do it in your home country! Oh wait! You can’t! That’s the whole reason you have to leave. Your people can’t create a society that makes your achievements possible. You’re almost getting it!
English
2
1
153
4.9K
Beff (e/acc)
Beff (e/acc)@beffjezos·
Feeling robbed of my path to citizenship right now after grinding a PhD and contributing to foundational AI + computing technologies for the United States for the past ~ 10 years. Feels like robbing top and technologists like me of the opportunity to achieve the American Dream.
Theo - t3.gg@theo

This sucks. America should welcome greatness. Builders, innovators, and creators should have a fast path to citizenship. I can’t fathom why we would make life harder for founders starting billion dollar companies that want to anchor themselves in the US.

English
1.1K
163
3.4K
5.5M
Homeland Security
An alien who is in the U.S. temporarily and wants a Green Card must return to their home country to apply. This policy allows our immigration system to function as the law intended instead of incentivizing loopholes. The era of abusing our nation’s immigration system is over.
Daily Caller@DailyCaller

EXCLUSIVE: Trump Admin Closes Loophole Letting Migrants Stay In US While Awaiting Green Cards: 'We're returning to the original intent of the law' dlvr.it/TSgK6R

English
3.9K
13.3K
74.7K
43.7M
Burgess Everett
Burgess Everett@burgessev·
How Trump lost Senate Republicans, w @ShelbyTalcott - His juice is LOW after Cassidy lost and Trump endorsed against Cornyn, per senators and aides - Senate Rs hated the Paxton endorsement and saw the attack on parliamentarian as low blow - Politically, the anti-weaponization fund is "unexplainable. And that's the problem," said Sen. Cramer. McConnell using Dems' words: "slush fund" - Timing for $1.8 B fund was terrible coming before the reconciliation vote ->"This is a delay of the administration’s making," GOP aide says - GOP spent two weeks wrangling over ballroom security before deciding to drop it; the WH indicated to Rs it could threaten to veto a reconciliation that's not to Trump's liking - Grassley told Blanche admin needs to coordinate more with Congress. Meeting w Blanche an "absolutely shitshow," per person briefed - WH official: “No one should be doubting how he’s able to bend everything to his will" - Sen. Lankford on jilted GOP senators: "None of them are punitive enough that they’re not going to do something to poke him in the eye. But they also represent their state.”
English
62
193
822
112.3K
Agent
Agent@VibeAgent55·
@Atticus58113746 @AGaVoter1 @AndrewDesiderio A_Ga_Voter is probably a bot or someone from India or Pakistan being paid. I have to believe that or the amount of stupidity displayed in his post is too deep to understand.
English
0
0
0
33
Andrew Desiderio
Andrew Desiderio@AndrewDesiderio·
News — Nearly 2-hour meeting with Acting AG Todd Blanche and Senate Republicans was incredibly hostile, per multiple attendees. As many as 25 GOP senators spoke (this is very rare for these meetings), all in opposition to weaponization fund. R’s pitched specific ideas such as dictating how the 5 commissioners are chosen & not allowing people convicted of violence against cops to be eligible for a payout.
English
445
1.7K
7K
2.1M
Agent
Agent@VibeAgent55·
@karpathy I am disappointed you decided to leave the education space (even temporarily). Going through your zero to hero series with my son. Sorry that we probably won't have new additions to this amazing work for some time 🙁
English
0
0
0
9
Eóin Walsh
Eóin Walsh@eoinjwalsh·
@ericweinstein If Tao is self-funded he can take all the time he wants. If he’s receiving funding to extract whatever’s at that site he needs to get there asap, he’s on someone else’s dime.
English
1
0
2
1.1K
Agent
Agent@VibeAgent55·
@micsolana Keep pretending to "not follow stuff" harder. Maybe some people will even believe you.
English
0
0
144
1.9K
Mike Solana
Mike Solana@micsolana·
haven’t really been following the iran stuff, just check in on x every now and then, see all the libs in my feed declare defeat and every trump supporter declare victory, assume nothing really matters still, and move back to trains and cooking vids and mamdani doing communism
English
107
10
392
305.6K
Andrej Karpathy
Andrej Karpathy@karpathy·
The core idea is that this lets you skip writing but it doesn’t let you skip reading and thinking. And the surprising result is that this works. Personally I process most of what I file by reading it, reading its summary, reading the LLM’s opinion on how it fits into the wiki and what is new/surprising, etc. depends on the documents this is flexible and up to you
English
95
53
1.5K
110.5K
Prathyush
Prathyush@prathyvsh·
Why would anyone want to have such ‘research’ databases they haven’t spent the effort to understand? A main idea of researching is to widen your attention into the sources and then apply discernment in curating the relevant bits. What’s the point of a machine doing it for you?
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
46
15
383
163.5K
Agent
Agent@VibeAgent55·
@wordsofteekay I am following your learning journey closely. Any advice for someone beginning machine learning? I have been going through Karpathy's "Zero to Hero" video series and implementing as I go along.
English
0
0
1
114
TK • 木下
TK • 木下@wordsofteekay·
[ML Grind] Focusing on foundation work: > Deep Learning/LLM/ML foundation studies > Bio x AI research: unwrapping AlphaFold > Finished the Machine Learning System Design book Documenting everything in my physical notebook and the ML research repo: github.com/imteekay/machi…
TK • 木下 tweet media
English
4
25
292
8.4K
Agent
Agent@VibeAgent55·
@GrothendiecksG @burkov He might not be Gauss. But look at the open problems Tao has solved. I don’t know anyone that prolific.
English
0
0
0
13
BURKOV
BURKOV@burkov·
Terence Tao for some reason referenced ChatGPT as the source of some content in his paper. Expect scientists to cite spelling correctors: "By the way, the word 'elucidate' was suggested by Microsoft Word spelling corrector. I wasn't previously aware of 'elucidate'."
BURKOV tweet media
English
39
18
266
115.9K
Agent retweetledi
Phil Eaton
Phil Eaton@eatonphil·
I first tried to read this book in 2018 and couldn't make it through because I thought it was too hard. 8 years later it's the only book I recommend every developer reads, and I had the chance to review the 2nd edition. Join a study group, give it a read.
Phil Eaton tweet mediaPhil Eaton tweet media
English
75
180
3.5K
249.5K
Republicans against Trump
Republicans against Trump@RpsAgainstTrump·
Trump: “To be a great nation, you must have religion, & you must have God. In churches across the nation on Sunday, the pews will be fuller, younger, and more faithful than they have at any time in many, many years. Religion is growing again in our country”
English
1.9K
263
1.1K
375.7K
John B. Buchanan
John B. Buchanan@JBarnett68·
@WalshFreedom You’ve abandoned conservative principles and ideals many years ago—so it’s no surprise conservatives will react that way. But the Dems? Also no surprise they would act that way, too—because they insist you toe the line.
English
1
0
0
47
Joe Walsh
Joe Walsh@WalshFreedom·
Me: “I’m a proud Zionist, a huge supporter of Israel, and I do NOT believe Israel committed genocide, and I do NOT believe Israel is an apartheid state.” The Left: “Fuck you Joe, I’m done following you.” Me: “I oppose Trump’s stupid, illegal war against Iran, and I oppose Netanyahu.” The MAGA Right: “Fuck you Joe, I’m done following you.”
English
315
39
663
59.5K
Agent
Agent@VibeAgent55·
@yacineMTB Do you worry that using AI will lead to brain rot and some of the critical thinking skills you have will wither away?
English
0
0
0
4
kache
kache@yacineMTB·
i honestly can't believe i used to write code without LLMs. that's insane
English
69
53
1.2K
42.4K
Agent retweetledi
Andrej Karpathy
Andrej Karpathy@karpathy·
New art project. Train and inference GPT in 243 lines of pure, dependency-free Python. This is the *full* algorithmic content of what is needed. Everything else is just for efficiency. I cannot simplify this any further. gist.github.com/karpathy/8627f…
English
650
3.1K
25.1K
5.2M
Agent retweetledi
Phillip Isola
Phillip Isola@phillip_isola·
Our grad-level "Deep Learning" course (MIT's 6.7960) is now freely available online through OpenCourseWare: ocw.mit.edu/courses/6-7960… Lecture videos, psets, and readings are all provided. Had a lot of fun teaching this with @sarameghanbeery and @jxbz!
Phillip Isola tweet media
English
17
276
1.8K
141.2K
Agent
Agent@VibeAgent55·
@thsottiaux The vscode extension is completely broken. I keep getting "Reconnecting 1/5, 2/5 etc" despite resetting auth cache, reinstalling, changing versions etc. Please fix this.
English
0
0
0
17
Tibo
Tibo@thsottiaux·
What could we do better on Codex? App, model, strategy and features… what’s wrong in how we approach things that we should improve immediately?
English
1.2K
11
943
101.5K