logoalt Hacker News

tech_kenyesterday at 5:56 PM1 replyview on HN

But in the case of CPU architecture there are SOME people who understand how things work 100%, and they've built and vetted abstractions/mental models that enable other engineers and scientists to have that kind of mixed shallow/deep understanding in a way that works. On the side of LLMs we're still lacking an expertise which could flawlessly explain how these things operate; the abstractions that we're using are instead derived inductively and are totally unvetted.


Replies

janalsncmyesterday at 6:50 PM

You are right that the field doesn’t have a theoretically sound explanation for the architectural choices aside from “A works better than B”. However, I would argue this is an ideal opportunity for the “gentleman scientist” or eager 17 year old.

Basically every part of the original transformer was replaced with something more efficient or better:

LayerNorm -> RMSNorm

Sinusoidal position encoding -> RoPE

MHA -> GQA

ReLU -> GELU

What this means is that there is ample opportunity to improve on what we’ve done thus far.

show 2 replies