<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: evilmathkid</title><link>https://news.ycombinator.com/user?id=evilmathkid</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 07 Sep 2026 19:27:27 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=evilmathkid" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>well not if its an open textbook exam<p>in non metaphor terms: In many ML situations you can carry the train set with you test time. Eg: KNN, SVM, replay buffers, etc<p>this is one such case<p>--<p>the separate overfitting concern is fair, look at private holdout performance for that. it performs on par with TRM (a comparable model) in the private set, ofc with far less compute</p>
]]></description><pubDate>Wed, 02 Sep 2026 02:53:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=49531177</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49531177</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49531177</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>Yeah agree with pg completely. Multiple people I know did this</p>
]]></description><pubDate>Tue, 01 Sep 2026 21:52:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=49528756</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49528756</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49528756</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>Yeah but I posted this work back in Dec-Feb lol</p>
]]></description><pubDate>Tue, 01 Sep 2026 20:52:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=49528043</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49528043</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49528043</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>no, most models on kaggle are finetuning during test time, (including LLM based approaches)<p>Pure frontier LLMs dont, but thats because nobody knows how to make it work cleanly and at scale. Once someone makes it work, it will be deployed</p>
]]></description><pubDate>Tue, 01 Sep 2026 20:49:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=49528015</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49528015</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49528015</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>Not true. This is allowed in a metalearning context. Its called transductive learning and has existed since the 90s: <a href="https://en.wikipedia.org/wiki/Transduction_(machine_learning)" rel="nofollow">https://en.wikipedia.org/wiki/Transduction_(machine_learning...</a><p>I address this in more detail in the blog</p>
]]></description><pubDate>Tue, 01 Sep 2026 20:41:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=49527919</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49527919</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49527919</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>I didn't phrase that well and cant edit, so clarifying:<p>What I did was "You are born during the exam, given access to a training set (which is curated and allowed) and the questions then <i>learn everything from scratch during the exam</i>"</p>
]]></description><pubDate>Tue, 01 Sep 2026 20:28:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=49527703</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49527703</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49527703</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>what you describe would be cheating. My approach is the opposite. What I did was "You are born during the exam, given access to a training set and the questions then <i>learn from scratch during the exam</i>"<p>I put more details in the answer here: <a href="https://news.ycombinator.com/item?id=49525841">https://news.ycombinator.com/item?id=49525841</a></p>
]]></description><pubDate>Tue, 01 Sep 2026 20:16:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=49527530</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49527530</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49527530</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>2 different things are being called leakage here<p>1) weight update during eval: this is a form of test time training and not really cheating. It is also closer to Sutton's views of intelligence: models should learn during deployment, instead of being frozen after training<p>2) overfitting: agree that true measure is private set. It scores on private set roughly on par with TRM (a comparable model), obv with much lesser compute<p>--<p>also re LLMs: they do not follow this 3 split since (a) Incredibly hard to keep a pretrain dataset clean, (b) common in labs to benchmaxx during postraining (and known to do so on ARC)</p>
]]></description><pubDate>Tue, 01 Sep 2026 20:07:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=49527386</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49527386</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49527386</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>haha thanks!</p>
]]></description><pubDate>Tue, 01 Sep 2026 19:35:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=49526961</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49526961</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49526961</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>As of today yes I agree with you<p>in the future, for general perf, I am optimistic that someone will figure out an alphazero like approach (ilya/silver/sutton/carmack seem to be working on something like this)</p>
]]></description><pubDate>Tue, 01 Sep 2026 19:35:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=49526946</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49526946</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49526946</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>train from scratch only during the 12 hours allowed on Kaggle<p>Other competitions have implemented things like this before. Eg: OpenAI's Parameter Golf and Keller Jordan's Modded NanoGPT Speedrun</p>
]]></description><pubDate>Tue, 01 Sep 2026 19:20:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=49526726</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49526726</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49526726</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>Glad to know you like it!<p>1) Unfortunately I didn't. I was v new to ML when I did this and didnt have time or skill to try many things. Will try them when I get some time!<p>2) Possibly, but it would require significant changes and effort. But much larger models would be required imo (must have capacity greater than the complexity of the problem)</p>
]]></description><pubDate>Tue, 01 Sep 2026 19:10:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=49526582</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49526582</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49526582</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>> <i>You mean for a specific usecase?</i><p>Yepp<p>> Also aren't frontier models trained 'from scratch'?<p>The full sentence was supposed to be "training from scratch <i>only</i> on ARC data"<p>the point was you dont need large scale pretraining</p>
]]></description><pubDate>Tue, 01 Sep 2026 18:24:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=49525880</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49525880</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49525880</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>> <i>In the university I first dropped out of, students that surpassed me studied by getting and sharing copies of previous exams and solving those question</i><p>Yes what you describe would be cheating. My approach is the opposite. What I did was "Carry your textbook to the exam and then <i>learn from scratch during the exam</i>"<p>What you described is cheating because more time than the exam permits. ARC was designed specifically to avoid this. The exam in question (kaggle competition) is 12hrs long with 4xL4s. I trained on 1.5hrs with a single 5090 (which converted to 4xL4s is slightly longer, but still within 12hrs).<p>(There's also access to experts who know the answer, which kaggle bans by banning the internet)<p>Lucas describes it well here (and his original tweet up the thread): <a href="https://x.com/giffmana/status/2002128356901597509" rel="nofollow">https://x.com/giffmana/status/2002128356901597509</a><p>--<p>Your arguments btw support my work over the LLMs more. LLMs today are postrained with a large amount of synthetic ARC data. (Exactly the "teach to test" criticism). Thats why they perform so well on ARC. Base models still are terrible at ARC-2</p>
]]></description><pubDate>Tue, 01 Sep 2026 18:22:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=49525841</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49525841</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49525841</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>same! I'd often <i>learn</i> during the exam by solving an easier problem and then that would let me tackle a hard problem</p>
]]></description><pubDate>Tue, 01 Sep 2026 18:03:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=49525524</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49525524</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49525524</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>Thanks!<p>I think this is a great question. I have some thoughts on this but no hard evidence (neither does anyone else!)<p>Your argument relies on the AGI system being the model arch + weights. I think that the weights are irrelevant. The training algorithm is what is AGI: You choose/find a training set that covers a task, and then some form of deep learning with a big  neural net.<p>For LLMs (which is a weak kind of AGI), this is freezing a model after NTP pretraining + RL postraining. This allows us to do well on a wide distribution of tasks.<p>But if we had a scoped task, I think its possible to just do the same thing with (1) a smaller dataset that covers this task + (2) not freezing the model (ie. test time training). This is easy for ARC because the data is small and has been curated well yes, but i don't see why can't this apply to more complex/ill-defined tasks (obv lots of things unsolved to make it work today)<p>> <i>even if the ARC train+eval sets contain the sum of human intuition between them, superficial differences IRL would render your model unable to identify which examples are relevant to which problems, and thus unable to transductively reason.</i><p>In this hypothetical world, the dataset becomes incredibly large, and training on it makes it close to an LLM. You can then finetune transductively and we get the same thing (other approaches already do this iirc)<p>--<p>Note: BTW I'm not claiming that this is an AGI system, the benchmark creator also was clear that ARC is not sufficient for AGI (his goal was just to point out unsolved stuff, and the stuff ARC-2 pointed out was demonstrated very clearly by large reasoning models).<p>In the above work, I just wanted to show that AR transformers without pretraining can perform really well on this benchmark, which was incredibly non-obvious before.<p>The claims in this argument are separate and I haven't proved them yet</p>
]]></description><pubDate>Tue, 01 Sep 2026 18:02:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=49525509</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49525509</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49525509</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>there's a very large variance in doctors' abilities in India. At the very top they are close to the best in the world, esp with an insanely high workload.<p>but on an average, not great<p>Also, a lot of gymgoers and physical trainers I know hadn't heard of rhabdo either (and this is a relatively wealthy part of a tier 1 city)<p>things are changing for the better however</p>
]]></description><pubDate>Tue, 01 Sep 2026 16:27:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=49524242</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49524242</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49524242</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>9 color tokens + 4 special tokens (start, end, newline, inp_out_sep)</p>
]]></description><pubDate>Tue, 01 Sep 2026 15:44:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=49523540</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49523540</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49523540</guid></item><item><title><![CDATA[New comment by evilmathkid in "I trained a small transformer in 1.5hrs and it beats many LLMs"]]></title><description><![CDATA[
<p>Nope, it never learns how it did on the questions.<p>During test time, you have to submit all the answers at once and you get the total score (so you dont even know which puzzles were solved)</p>
]]></description><pubDate>Tue, 01 Sep 2026 15:42:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=49523504</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49523504</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49523504</guid></item><item><title><![CDATA[New comment by evilmathkid in "44% on ARC-AGI-1 in 67 cents"]]></title><description><![CDATA[
<p>thanks! was incredibly scary when it happened</p>
]]></description><pubDate>Tue, 01 Sep 2026 15:20:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=49523161</link><dc:creator>evilmathkid</dc:creator><comments>https://news.ycombinator.com/item?id=49523161</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49523161</guid></item></channel></rss>