Human-Like Neural Nets by Catapulting
11–19 of 19 posts
Re: Human-Like Neural Nets by Catapulting
#12An attempt at a summary of the argument: - Human brains are estimated to have a few hundred trillion synapses. If you tried to replicate this in a neural network model with one parameter per synapse, it would be much larger than the largest models in use today. - Conventional wisdom in form of the Chinchilla scaling law suggests that to train such a gargantuan model, you would need an even more gargantuan training co…
They're missing that humans don't consume raw text. They consume non-stop high resolution, high FPS audio and video imagery. If you tokenized the input to human eyes and ears in the first few years of life, that's more data than even the largest LLMs are trained on.
Re: Human-Like Neural Nets by Catapulting
#13An attempt at a summary of the argument: - Human brains are estimated to have a few hundred trillion synapses. If you tried to replicate this in a neural network model with one parameter per synapse, it would be much larger than the largest models in use today. - Conventional wisdom in form of the Chinchilla scaling law suggests that to train such a gargantuan model, you would need an even more gargantuan training co…
> Human brains are estimated to have a few hundred trillion synapses. If you tried to replicate this in a neural network model with one parameter per synapse... Note that LLM parameters don't map to synapses in the same naive way they would for a fully connected network. Each attention parameter is applied thousands or millions of times to the inputs at each inference pass, so it's more like each param might code for…
Though there are things like looped transformers that reuse the same parameters multiple times even for a single token, so maybe those will finally give us AGI if scaled up to a trillion parameters and looped hundreds of times. (Sounds expensive!)
Re: Human-Like Neural Nets by Catapulting
#14An attempt at a summary of the argument: - Human brains are estimated to have a few hundred trillion synapses. If you tried to replicate this in a neural network model with one parameter per synapse, it would be much larger than the largest models in use today. - Conventional wisdom in form of the Chinchilla scaling law suggests that to train such a gargantuan model, you would need an even more gargantuan training co…
>But no human has read anywhere near as much as even relatively small Chinchilla-optimal models They're missing that humans don't consume raw text. They consume non-stop high resolution, high FPS audio and video imagery. If you tokenized the input to human eyes and ears in the first few years of life, that's more data than even the largest LLMs are trained on.
Re: Human-Like Neural Nets by Catapulting
#15Earlier quoted context omitted.
>But no human has read anywhere near as much as even relatively small Chinchilla-optimal models They're missing that humans don't consume raw text. They consume non-stop high resolution, high FPS audio and video imagery. If you tokenized the input to human eyes and ears in the first few years of life, that's more data than even the largest LLMs are trained on.
I didn't include it in my summary (it took me an hour to read the whole thing, obviously a lot had to be cut) but the article does actually address the "high resolution" argument in a three-paragraph bullet point under the "Sample Inefficiency" subheading: https://gwern.net/llm-catapult#sample-inefficiency If you read it on a 4K screen at 120 FPS, you should be able to take in its information content in less than a m…
Re: Human-Like Neural Nets by Catapulting
#16Earlier quoted context omitted.
We have a lot of synapses, but (agreeing with you) I don't find that sufficient to explain why humans (or animals!) do what we do. If you throw zillions of parameters at a problem with a weak architecture, you get really high-fidelity memorization, and we're not awesome at memorization compared to machines. Humans can do an impressive amount of generalization from one error or surprise, and as is often rightly noted,…
There is actually a way to get really amazing sample efficiency out of a learning setup, and that's engineering in a load of appropriate inductive biases, which personally I am convinced evolution has done for us. Explains a big chunk of the "how are brains so sample efficient" problem really easy, but unfortunately without handing us an easy way to replicate it, which makes it unpopular. Also, it's something that we…
Re: Human-Like Neural Nets by Catapulting
#17An attempt at a summary of the argument: - Human brains are estimated to have a few hundred trillion synapses. If you tried to replicate this in a neural network model with one parameter per synapse, it would be much larger than the largest models in use today. - Conventional wisdom in form of the Chinchilla scaling law suggests that to train such a gargantuan model, you would need an even more gargantuan training co…
>But no human has read anywhere near as much as even relatively small Chinchilla-optimal models They're missing that humans don't consume raw text. They consume non-stop high resolution, high FPS audio and video imagery. If you tokenized the input to human eyes and ears in the first few years of life, that's more data than even the largest LLMs are trained on.
And on the human side, disabled people are not much less intelligent than normal humans: deaf/blind people are much worse at language tasks, but their fluid intelligence often remains normal. If the sensory bandwidth were so critical, this would be impossible.Re: Human-Like Neural Nets by Catapulting
#18Earlier quoted context omitted.
> Human brains are estimated to have a few hundred trillion synapses. If you tried to replicate this in a neural network model with one parameter per synapse... Note that LLM parameters don't map to synapses in the same naive way they would for a fully connected network. Each attention parameter is applied thousands or millions of times to the inputs at each inference pass, so it's more like each param might code for…
A biological synapse's weight takes effect whenever its input changes. So although it cannot be copied and applied in parallel to different inputs at the same time (and hence your visual cortex has a bunch of more-or-less identical edge-detection circuits) it can still be applied sequentially to different inputs at different times. And when LLMs do operate in sequential mode, generating tokens one at a time, they typ…
I don't think it makes sense to try to compare our brains to ANN's, they are apples and oranges.
A synapse's weight is dynamically modulated by the astrocyte on multiple time scales (millisecond, sub-second, minutes), and the astrocyte itself is receiving inputs and performing computation (in addition to impacting the neural network).
Re: Human-Like Neural Nets by Catapulting
#19Earlier quoted context omitted.
A biological synapse's weight takes effect whenever its input changes. So although it cannot be copied and applied in parallel to different inputs at the same time (and hence your visual cortex has a bunch of more-or-less identical edge-detection circuits) it can still be applied sequentially to different inputs at different times. And when LLMs do operate in sequential mode, generating tokens one at a time, they typ…
> A biological synapse's weight takes effect whenever its input changes. I don't think it makes sense to try to compare our brains to ANN's, they are apples and oranges. A synapse's weight is dynamically modulated by the astrocyte on multiple time scales (millisecond, sub-second, minutes), and the astrocyte itself is receiving inputs and performing computation (in addition to impacting the neural network).
It makes perfect sense to compare them. There are clear similarities in the style of processing. And I rarely, if ever, see people over interpreting comparisons.
--
The above insight: That convolution in a model has a not-the-same but still related relationship to living neurons isn't nonsense. In both cases, parameters are not just being used once in a given short-term response, even though the specifics of reuse are different.
And the relationship can be stronger: There is a lot of evidence convolution does effectively happen in the brain, via similar operations occurring across a region of similarly organized neurons, instead of via "reused" neurons/parameters. I.e. lots of regularity in the visual system's early processing.
Other things I find interesting: Human neurons are very noisy and statistical, but some of that gets smoothed by soma integration. So there is a loose correspondence with the sigmoid function, with biology encoding by frequency instead of amplitude.
Also, the branched dendritic trees of live neuron's are not passive, they can have apparently active aggregation points. Which makes a human neuron more comparable to a neuron with multiple feeder neurons. I.e. a very small two-layer net. And it adds the possibility of tunable "parameters" within the dendrite tree, in addition to synapse strengths.
The contrast of gradient algorithms, vs. whatever algorithms human cells learn with, is really interesting. We know a little about how one neuron learns, but not much at all about how organized neurons learn together. In this case, comparison is fruitful for the contrast it highlights.
The biological neuron as a little-two-layer net model, suggests that perhaps learning operates at multiple levels in a single neuron. I.e. "two-layer" learning rules.