frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Why Are There So Many 'Alternative Devices' All of a Sudden?

https://www.theatlantic.com/technology/archive/2025/05/alternative-device-fair/682837/
1•fortran77•2m ago•0 comments

Share your AI agents with a simple link

https://nelly.is/news/share-agents-with-a-link
1•gitmagic•3m ago•0 comments

The 80% of UI Design – Typography [video]

https://www.youtube.com/watch?v=9-oefwZ6Z74
2•vinhnx•4m ago•0 comments

Apple's A.I. Ambitions for China Provoke Washington's Resistance

https://www.nytimes.com/2025/05/17/technology/apple-alibaba-ai-tool-china.html
2•mistersquid•5m ago•0 comments

Steepest Descent Density Control for Compact 3D Gaussian Splatting

https://arxiv.org/abs/2505.05587
2•PaulHoule•8m ago•0 comments

Analyzing, Predicting, and Controlling How a Reasoning Model Will Think

https://arxiv.org/abs/2505.10185
1•simonpure•10m ago•0 comments

Show HN: A MCP server to evaluate Python code in WASM VM using RustPython

https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/eval-py
1•tuananh•11m ago•0 comments

Ask HN: How to Foreshadow?

1•ksec•12m ago•0 comments

Orchestrator: The AI agent operating system

https://www.orchestratoros.com/
1•obitracks•14m ago•0 comments

Coming to a Brain Near You: A Tiny Computer

https://www.wsj.com/tech/brain-implant-musk-als-tbi-neuralink-f733998f
2•bookofjoe•19m ago•1 comments

Show HN: X-RAY – A student-built tool to audit OS behavior via ISO comparison

2•tangtian•21m ago•0 comments

Show HN: Insert-tools – bulk insert with schema check and column match in CH

https://github.com/castengine/insert-tools
1•castengine•22m ago•0 comments

Show HN: SRE Assistant – An AI-powered agent for Kubernetes and AWS operations

https://github.com/serkanh/sre-bot
1•serkanh•23m ago•0 comments

Community Stewardship of Faster CPython

https://discuss.python.org/t/community-stewardship-of-faster-cpython/92153
2•bratao•25m ago•0 comments

The Day Grok Lost Its Mind

https://www.nytimes.com/2025/05/17/opinion/grok-ai-musk-x-south-africa.html
4•mistersquid•27m ago•0 comments

Focus Is Relaxing

https://afarah.info/public/blog/focus/index.html?_r=hn
3•afarah1•27m ago•0 comments

Psychedelics May Shift Brain Power to the Right Hemisphere

https://neurosciencenews.com/psychedelics-right-hemisphere-28946/
2•nabla9•30m ago•1 comments

Windsurf SWE-1 AI coding model

https://swe-1.surf/
2•zoudong376•35m ago•1 comments

NHS rolls out 5-minute 'super-jab' for 15 cancers

https://www.england.nhs.uk/2025/04/nhs-rolls-out-5-minute-super-jab-for-15-cancers/
6•dsego•35m ago•0 comments

Debian 12.11 Released

https://www.debian.org/News/2025/20250517
2•midzer•35m ago•0 comments

FDA Clears First Blood Test to Diagnose Alzheimer's

https://www.bloomberg.com/news/articles/2025-05-16/fda-approves-first-blood-test-to-diagnose-alzheimer-s-disease
4•marc__1•43m ago•0 comments

The Common Lisp Cookbook: Scripting. Command Line Arguments. Executables

https://lispcookbook.github.io/cl-cookbook/scripting.html
3•Tomte•44m ago•0 comments

Quickemu: Quickly create and run optimised Windows, macOS and Linux VMs

https://github.com/quickemu-project/quickemu
3•Tomte•44m ago•0 comments

How Does Retrieval Improve New Learning? (2024)

https://www.learningscientists.org/blog/2024/3/7/how-does-retrieval-improve-new-learning
1•mooreds•45m ago•0 comments

Britain is now the biggest funder of solar-geoengineering research

https://www.economist.com/science-and-technology/2025/05/14/britain-is-now-the-biggest-funder-of-solar-geoengineering-research
1•helsinkiandrew•48m ago•1 comments

Life Is Short (2016)

https://paulgraham.com/vb.html
4•tzury•51m ago•1 comments

'Murderbot' is the best new comedy of 2025

https://text.npr.org/nx-s1-5393659
8•mooreds•52m ago•0 comments

HUD and DOI Open Under Utilized Federal Lands for Affordable Housing [video]

https://www.youtube.com/watch?v=Orp0KfBajJs
3•mooreds•52m ago•0 comments

O2 VoLTE: locating any customer with a phone call

https://mastdatabase.co.uk/blog/2025/05/o2-expose-customer-location-call-4g/
5•kragniz•52m ago•1 comments

The 'deprofessionalization of video games' was on full display at PAX East

https://www.gamedeveloper.com/business/-deprofessionalization-is-bad-for-video-games
5•amichail•53m ago•0 comments
Open in hackernews

Transformer neural net learns to run Conway's Game of Life just from examples

https://sidsite.com/posts/life-transformer/
37•montebicyclelo•4h ago

Comments

bonzini•2h ago
Do I understand correctly that it's brute forcing a small grid rather than learning the algorithm?
montebicyclelo•2h ago
> it's brute forcing a small grid

If by small grid you are referring to the attention matrix plot shown, then that is not a correct interpretation. That diagonal-like pattern it learns, is 3x3 convolution, so it can compare the neighbours of a given cell.

Edit: and note that every grid it is trained on / runs inference on is randomly generated and completely unique, so it cannot just memorise examples

bonzini•2h ago
My interpretation is that while it did learn the exact computation and not just a statistical approximation, it's still limited to a grid of a given size. In that sense the attention matrix is brute forced and the network did not learn a generalization. The article itself says "The largest grid size we successfully trained was 16x16".
yorwba•1h ago
They're using learned positional embeddings for each grid cell, so there's no straightforward way to extend a model trained on a small grid to a larger grid. If you go from large to small, I think it would do better than chance, but get the periodic boundary condition wrong, because the period changes with the grid size.

Using 2D RoPE instead would in principle allow scaling up as well, and maybe even period detection if you train it across a range of grids, but would eventually hit the same issues that plague long-context scaling in LLMs.

bernb•1h ago
Yes, it does not understand (or has learned) the rules of the game then. For that being the case, it should be able to apply the rules correctly in a slightly different context.

Would it be possible to train an LLM on the rules how we would teach them to a human?

constantcrying•2h ago
To be honest an unsurprising result.

But I think the paper fails to answer the most important question. It alleges that this isn't a statistical model: "it is not a statistical model that predicts the most likely next state based on all the examples it has been trained on.

We observe that it learns to use its attention mechanism to compute 3x3 convolutions — 3x3 convolutions are a common way to implement the Game of Life, since it can be used to count the neighbours of a cell, which is used to decide whether the cell lives or dies."

But it is never actually shown that this is the case. It later on isn't even alleged that this is true, rather the metric they use is that it gives the correct answers often enough, as a test for convergence and not that the net has converged to values which give the correct algorithm.

But there is no guarantee that it actually has learned the game. There are still learned parameters and the paper doesn't investigate if these parameters actually have converged to something where the Net is actually just a computation of the algorithm. The most interesting question is left unanswered.

Y_Y•2h ago
Reminds me of this great story about a programmer-turned-businessman who tried to learn a game from examples and ended up with an almost-correct brute force solution:

https://www.borrett.id.au/computing/petals-bg.htm

montebicyclelo•2h ago
The diagonal-looking attention matrix shown in the post is mathematically equivalent to 3 by 3 convolution. The model learns how to do that via its attention mechanism - it's not obvious that it would be able to do that via attention.

(This can be shown by comparing that attention matrix to a "manually computed Neighbour Attention matrix", which is known to be equivalent to 3 by 3 conv.)

constantcrying•4m ago
Yes, I also quoted that part from the article. This does not address that the attention Matrix does not represent all learned parameters. Even supposing that the form of the attention matrix guarantees the correct functioning of the algorithm why was that not used as the metric to decide convergence?

"We detected that the model had converged by looking for 1024 training batches with perfect predictions, and that it could perfectly run 100 Life games for 100 steps." This would be superfluous (and even a pretty bizarre methodology) if the shape of the attention matrix was proof that the Network performed the actual game of life algorithm.

Just to be clear, I am not saying that the NN isn't converging to performing some computation that would also be seen in other algorithms. I am saying that the paper does not investigate whether the resulting NN actually performs the game of life algorithm. The convolution part is certainly evidence, but I think it would have been worthwhile to look at the actual resulting Net and figure out if the trained weights together actually formed an algorithm. This is also the only way to determine the truth of the initial claim, that this isn't just a statistical model, but rather an actual algorithm.

eapriv•2h ago
Great, we can spend crazy amount of computational resources and hand-holding in order to (maybe) reproduce three lines of code.
zelphirkalt•1h ago
Exactly my thoughts. This is not useful at all. We already know how to write exact and correct code to implement that. This is no task that we should throw ANNs at.
gessha•1h ago
Basic research has non-obvious utility and it deserves its own spotlight.

It’s similar to comparing hardware radio and software-defined radio: Yes, we already know how to build a radio with hardware but a software-defined one offers greater flexibility.

ninetyninenine•1h ago
The significance of this is that we can fully understand this problem because it’s only 3 lines of code.

Like for learning the English language we don’t fully understand the way LLMs work. We can’t fully characterize it. So we have debates on whether the LLM actually understands English or understands what it’s talking about. We simply don’t know.

The results of this show that the transformer understands the game of life. Or whatever the transformer does with the rules of the game of life it’s safe to say that it fits a definition of understanding as mankind knows it.

Like much of machine learning where we use the abstraction of curve fitting to understand higher dimensional learning we can do the same extrapolation here.

If the transformer understands the game of life then that understanding must translate over to the LLM. The LLM understands English and understands the contents of what it is talking about.

There was a clear gradient of understanding before understanding the game of life hit saturation. The transformer lived in a state where it didn’t get everything right but it understood the game of life to a degree.

We can extrapolate that gradient to LLMs as well. LLMs are likely on that gradient, not yet at saturation. Either way, I think it’s safe to say that LLMs understand what they are talking about. It’s just that they haven’t hit saturation yet. There’s clearly things that we as humans understand better than the LLM.

But let’s extrapolate this concept to an even higher level:

Have we as humans hit saturation yet?

Philpax•1h ago
It's a theoretical result to help determine what they're capable of, not a practical solution. Of course you can write the code yourself - but that's not the point!
lynndotpy•1h ago
Well, you could also implement this by hand-writing weights for one convolution layer.

There are only 512 training examples needed for that, and it would be a lot more interesting if a learning algorithm were able to fit that 3x3 convolution layer from those 512 examples. IIRC, and don't quote me on that, but that's not been done.

evrimoztamur•2h ago
I would like to point out a much more exciting modelling process, whereby neural networks extract the underlying boolean logic from simulation outputs: https://google-research.github.io/self-organising-systems/di...

I firmly believe that differentiable logic CA is the winner, in particular because it extracts the logic directly, and thus leads to generalize-able programs as opposed to staying stuck in matrix multiplication land.

Nopoint2•1h ago
I don't get the point. A simple CNN with stride =1 should be able to solve it perfectly and generalize it to any size.
montebicyclelo•1h ago
It wasn't obvious that a transformer could do this, and learn to produce conv via attention
amelius•1h ago
But can it condense it into a small program?
xchip•1h ago
Even a simple regression will do that
montebicyclelo•1h ago
it won't AFAIK, without some extra hand coded logic
Dwedit•50m ago
Rip John Conway, died of Covid.