logoalt Hacker News

embedding-shapetoday at 11:25 AM4 repliesview on HN

> Nowhere does he say he built an llm. Hes using a transformer, not an llm.

Please describe what in your mind a "LLM" is exactly, then describe what this person is building. To me this sounds like "He's not building a calculator, he's just building a program that can do addition, minus, multiplication and division and display the results".

Obviously it's not a Large Language Model, but to me this looks more like a LLM than not, given the architecture he's chosen. But again, maybe I misunderstand?


Replies

evilmathkidtoday at 11:32 AM

Its not an LLM if there's no pretraining. AR transformers were around before LLMs and will be there after LLMs.

When I made this, the point was to show that you dont need pretraining (which is what makes an LLM) to perform well on complex tasks

And yes it is not a language model either. I did not train it on any language data. Only ARC puzzles

show 1 reply
soVeryTiredtoday at 11:39 AM

It’s neither large nor language-based. ARC-AGI-1 is grid-based and nonverbal.

Use of a transformer is not necessary or sufficient to qualify as an LLM.

crotonixtoday at 1:06 PM

Transformer solves a Seq2Seq problem just like RNNs. All Seq2Seq problems need not involve a language. In this case teaching on ARC puzzles doesn't mean what he trained is now trained on a language which will be English(or any other language) in this case. So, does his training successfully models "English as a language" -> No. This implies it is not "Large" and has not modeled any "language".

yorwbatoday at 11:46 AM

A LLM should at the very least be a language model, i.e. be able to take human-readable text as input or produce it as output. Transformers are used for plenty of tasks that don't involve language, for example object detection or blind source separation, where the models aren't called LMs; and on the other hand there are some LLM architectures that exclusively use linear attention variants and aren't really transformers anymore.