Thatās just the other side of the same coin whose flip side claims AGI is right around the corner. The truth is, you couldnāt possibly know either way.
The truth is, you couldnāt possibly know either way.
I think the argument is we're not remotely close when considering the specific techniques used by current generation of AI tools. Of course people can make new discovery any day and achieve AGI but it's a different discussion.
That's true in a somewhat abstract way, but I just don't see any evidence of the claim that it is just around the corner. I don't see what currently existing technology can facilitate it. Faster-than-light travel could also theoretically be just around the corner, but it would surprise me if it was, because we just don't have the technology.
On the other hand, the people who push the claim that AGI is just around the corner usually have huge vested interests.
"Dude trust me, just give me 40 billion more dollars, lobby for complete deregulation of the industry, and get me 50 more petabytes of data, then we will have a little human in the computer! RealshitGPT will have human level intelligence!"
In some dimensions, current day LLMs are already superintelligent. They are extremely good knowledge retrieval engines that can far outperform traditional search engines, once you learn how properly to use them. No, they are not AGIs, because they're not sentient or self-motivated, but I'm not sure those are desirable or useful dimensions of intellect to work towards anyway.
I think that's a very generous use of the word "superintelligent". They aren't anything like what I associate with that word anyhow.
I also don't really think they are knowledge retrieval engines. I use them extensively in my daily work, for example to write emails and generate ideas. But when it comes to facts they are flaky at best. It's more of a free association game than knowledge retrieval IMO.
How do you know weāre not remotely close to AGI? Do you have any expertise on the issue? And expertise is not āI can download Python libraries and use themā it is āI can explain the mathematics behind what is going on, and understand the technical and theoretical challengesā.
Engineer here with a CS minor in case you care about ethos: We are not remotely close to AGI.
I loathe python irrationally (and I guess Iām masochist who likes to reinvent the wheel programming wise lol) so Iāve written my own neural nets from scratch a few times.
Most common models are trained by gradient descent, but this only works when you have a specific response in mind for certain inputs. You use the difference between the desired outcome and actual outcome to calculate a change in weights that would minimize that error.
This has two major preventative issues for AGI: input size limits, and determinism.
The weight matrices are set for a certain number of inputs. Unfortunately you canāt just add a new unit of input and assume the weights will be nearly the same. Instead you have to retrain the entire network. (This problem is called transfer learning if you want to learn more)
This input constraint is preventative of AGI because it means a network trained like this cannot have an input larger than a certain size. Problematic since the illusion of memory that LLMs like ChatGPT have comes from the fact they run the entire conversation through the net. Also just problematic from a size and training time perspective as increasing the input size exponentially increases basically everything else.
Point is, current models are only able to simulate memory by literally holding onto all the information and processing all of it for each new word which means there is a limit to its memory unless you retrain the entire net to know the answers you want. (And itās slow af) Doesnāt sound like a mind to meā¦
Now determinism is the real problem for AGI from a cognitive standpoint. The neural nets youāve probably used are not thinking⦠at all. They literally are just a complicated predictive algorithm like linear regression. Iām dead serious. Itās basically regression just in a very high dimensional vector space.
ChatGPT does not think about its answer. It doesnāt have any sort of object identification or thought delineation because it doesnāt have thoughts. You train it on a bunch of text and have it attempt to predict the next word. If itās off, you do some math to figure out what weight modifications would have lead it to a better answer.
All these models do is what they were trained to do. Now they were trained to be able to predict human responses so yeah it sounds pretty human. They were trained to reproduce answers on stack overflow and Reddit etc. so they can answer those questions relatively well. And hey it is kind of cool that they can even answer some questions they werenāt trained on because itās similar enough to the questions they werenāt trained on⦠but itās not thinking. It isnāt doing anything. The program is just multiplying numbers that were previously set by an input to find the most likely next word.
This is why LLMs canāt do math. Because they donāt actually see the numbers, they donāt know what numbers are. They donāt know anything at all because theyāre incapable of thought. Instead there are simply patterns in which certain numbers show up and the model gets trained on some of them but you can get it to make incredibly simple math mistakes by phrasing the math slightly differently or just by surrounding it with different words because the model was never trained for that scenario.
Models can only āknowā as much as what was fed into them and hey sometimes those patterns extend, but a lot of the time they donāt. And you canāt just say āyou were wrongā because the model isnāt transient (capable of changing from inputs alone). You have to train it with the correct response in mind to get it to ālearnā which again takes time and really isnāt learning or intelligence at all.
Now there are some more exotic neural networks architectures that could surpass these limitations.
Currently Iām experimenting with Spiking Neural Nets which are much more capable of transfer learning and more closely model biological neurons along with other cool features like being good with temporal changes in input.
However, there are significant obstacles with these networks and not as much research because they only run well on specialized hardware (because they are meant to mimic biological neurons who run simultaneously) and you kind of have to train them slowly.
You can do some tricks to use gradient descent but doing so brings back the problems of typical ANNs (though this is still possibly useful for speeding up ANNs by converting them to SNNs and then building the neuromorphic hardware for them).
SNNs with time based learning rules (typically some form of STDP which mimics Hebbian learning as per biological neurons) are basically the only kinds of neural nets that are even remotely capable of having thoughts and learning (changing weights) in real time. Capable as in āthis could have discrete time dependent waves of continuous self modifying spike patterns which could theoretically be thoughtsā not as in āwe can make something that thinks.ā
Like these neural nets are good with sensory input and thatās about as far as weāve gotten (hyperbole but not by that much). But these networks are still fascinating, and they do help us test theories about how the human brain works so eventually maybe weāll make a real intelligent being with them, but that day isnāt even on the horizon currently
In conclusion, we are not remotely close to AGI. Current models that seem to think are verifiably not thinking and are incapable of it from a structural standpoint. You cannot make an actual thinking machine using the current mainstream model architectures.
The closest alternative that might be able to do this (as far as Iām aware) is relatively untested and difficult to prototype (trust me Iām trying). Furthermore the requirements of learning and thinking largely prohibit the use of gradient descent or similar algorithms meaning training must be done on a much more rigorous and time consuming basis that is not economically favorable. Ergo, weāre not even all that motivated to move towards AGI territory.
Lying to say we are close to AGI when we arenāt at all close, however, is economically favorable which is why you get headlines like this.
I have been trying to separate the truth from the hype, and learn more about how LLMs work, and this explanation has been one of the best one Iāve read on the topic. You strike a very good balance by going deep enough, but still keeping it understandable.
A question: I remember using Wolfram Alpha a lot back in university 15+ years ago. From a user perspective, it seems very similar to LLMs, but it was very accurate with math. From this, I take that modern LLMs are not the evolution of that model, but WA still appeared to be ahead of itās time. What is/was the difference?
Thanks, I almost didnāt post because it was an essay of a comment lol, glad you found it insightful
As for Wolfram Alpha, Iām definitely not an expert but Iād guess the reason it was good at math was that it would simply translate your problem from natural language into commands that could be sent to a math engine that would do the actual calculation.
So basically act like a language translator but for typed out math to a programming language for some advanced calculation program (like wolfram Mathematica)
Again, this is just speculation because Iām a bit too tired to look into it rn, but it seems plausible since we had basic language translators online back then (I thinkā¦) and Iād imagine parsing written math is probably easier than natural language translation
I hold a PhD in probabilistic machine learning and advise businesses on how to use AI effectively for a living so yes.
IMHO, there is simply nothing indicating that it's close. Sure LLMs can do some incredibly clever sounding word-extrapolation, but the current "reasoning models" still don't actually reason. They are just LLMs with some extra steps.
There is lots of information out there on the topic so I'm not going to write a long justification here. Gary Marcus has some good points if you want to learn more about what the skeptics say.
So, how would you define AGI, and what sorts of tasks require reasoning? I would have thought earning the gold medal on the IMO would have been a reasoning task, but Iām happy to learn why Iām wrong.
I definitely think that's remarkable. But I don't think scoring high on an external measure like a test is enough to prove the ability to reason. For reasoning, the process matters, IMO.
Reasoning models work by Chain-of-Thought which has been shown to provide some false reassurances about their process https://arxiv.org/abs/2305.04388 .
Maybe passing some math test is enough evidence for you but I think it matters what's inside the box. For me it's only proved that tests are a poor measure of the ability to reason.
Iām sorry, but this reads to me like āI am certain I am right, so evidence that implies Iām wrong must be wrong.ā And while sometimes that really is the right approach to take, more often than not you really should update the confidence in your hypothesis rather than discarding contradictory data.
But, there must be SOMETHING which is a good measure of the ability to reason, yes? If reasoning is an actual thing that actually exists, then it must be detectable, and there must be a way to detect it. What benchmark do you purpose?
You donāt have to seriously answer, but I hope you see where Iām coming from. I assume youāve read Searle, and I cannot express to you the contempt in which I hold him. I think, if we are to be scientists and not philosophers (and good philosophers should be scientists too) we have to look to the external world to test our theories.
For me, what goes on inside does matter, but what goes on inside everyone everywhere is just math, and I havenāt formed an opinion about what math is really most efficient at instantiating reasoning, or thinking, or whatever you want to talk about.
To be honest, the other day I was convinced it was actually derivatives and integrals, and, because of this, that analog computers would make much better AIs than digital computers. (But Hava Siegelmannās book is expensive, and, while I had briefly lifted my book buying moratorium, I think I have to impose it again).
Hell, maybe Penrose is right and we need quantum effects (I really really really doubt it, but, to the extent that it is possible for me, I try to keep an open mind).
I'm not sure I can give a satisfying answer. There are a lot of moving parts here, and a big issue here is definitions which you also touch upon with your reference to Searle.
I agree with the sentiment that there must be some objective measure of reasoning ability. To me, reasoning is more than following logical rules. It's also about interpreting the intent of the task. The reasoning models are very sensitive to initial conditions and tend to drift when the question is not super precise or if they don't have sufficient context.
The AI models are in a sense very fragile to the input. Organic intelligence on the other hand is resilient and also heuristic. I don't have any specific idea for the test, but it should test the ability to solve a very ill-posed problem.
I think we also should require to set some energy limits to those tests. Before it was assumed that those tests are done by humans, that can do those tests after eating some crackers and a bit of water.
Now we are comparing that to massive data centers that need nuclear reactors to have enough power to work through these problems...
Gary Marcus is certainly good. Itās not as if I think say, LeCun, or any of the many people who think that LLMs arenāt the way are morons. I donāt think anyone thinks all the problems are currently solved. And I think long time lines are still plausible, but, I think dismissing short time line out of hand is thoughtless.
My main gripe is how certain people are about things they know virtually nothing about. And how slap dashed their reasoning is. It seems to me most peopleās reasoning goes something like āthere is no little man in the box, itās just math, and math canāt think.ā Of course, they say it with a lot fancier words, like āitās just gradient decentā as if human brains couldnāt have gradient decent baked in anywhere.
But, out of interest what is your take on the Stochastic Parrot? I find the arguments deeply implausible.
I'm not saying that we can't ever build a machine that can think. You can do some remarkable things with math. I personally don't think our brains have baked in gradient descent, and I don't think neural networks are a lot like brains at all.
The stochastic parrot is a useful vehicle for criticism and I think there is some truth to it. But I also think LMMs display some super impressive emergent features. But I still think they are really far from AGI.
Part of this is a debate on what the definition of intelligence and/or consciousness is, which I am not qualified to discuss. (I say "discuss" instead of "answer" because there is not an agreed upon answer to either of those.)
That said, one of the main purposes of AGI would be able to learn novel subject matter, and to come up with solutions to novel problems. No machine learning tool we have created so far is capable of that, on a fundamental level. They require humans to frame their training data by defining what the success criteria is, or they spit out the statistically likely human-like response based on all of the human-generated content they've consumed.
In short, they cannot understand a concept that humans haven't yet understood, and can only echo solutions that humans have already tried.
I donāt see why AGI must be conscious, and the fact that you even bring it up makes me think you havenāt thought too hard about any of this.
When you say ānovel answersā what is it you mean? The questions on the IMO have never been asked to any human before the Math Olympiad, and almost all humans cannot answer those quesion.
Why does answering those questions not count as novel? What is a question whose answer you would count as novel, and which you yourself could answer? Presuming that you count yourself as intelligent.
What is a question whose answer you would count as novel, and which you yourself could answer?
AI does not have genetics and therefore no instincts that was shaped by billions of years of evolution,
so when presented with a challenge that doesn't appear in its training data, such as whether to love your neighbor or not, it might not be able to answer because that exact scenario doesn't appear in its training data.
humans can answer it instinctively because we have billions of years of experience behind us backing us up and providing us with a solid long-term positive decision-making capability.
AI will not threaten humans due to sadism or boredom, but because it takes jobs and makes people jobless.
When there is lower demand for human labor, according to the rule of supply and demand, prices (aka. wages) for human labor go down.
The real crisis is one of sinking wages, lack of social safety nets, and lack of future perspective for workers. That's what should actually be discussed.
Not sure if we will even really notice that in our lifetime, it is taking decades to get things like invoice processing to automate. Heck in the US they can't even get proper bank connections made.
Also, tractors have replaced a lot of workers on the land, computers have both lost a lot of jobs in offices and created a lot at the same time.
Jobs will change, that's for sure and I think most of the heavy labour jobs will become more expensive since they are harder to replace.
Ummm no? If moneyed interests want it then it happens. We have absolutely no control over whether it happens. Did we stop Recall from being forced down our throats with windows 11? Did we stop Gemini from being forced down our throats?
Capitalism is just an economic system, I'm not sure what nukes has to do with it. It's not like billionaires directly own them, and we have to distribute the "nuke wealth" to the people or anything lol
In the US, sure, but there have been class revolts in other nations. Iām not saying they lead to good outcomes, but king Louis XVI was rich. And being rich did not save him. There was a capitalist class in China during the cultural revolution. They didnāt make it through. If it means we wonāt go extinct, why can we have a revolution to prevent extinction?
The path to AGI seems inevitable - not because itās around the corner, but because of the nature of technological progress itself. Unless one of two things stops us, weāll get there eventually:
Either thereās something fundamentally unique about how the biological brain processes information - something that cannot, even in principle, be replicated in silicon,
Or we wipe ourselves out before we get the chance.
Barring those, the outcome is just a matter of time. This argument makes no claim about timelines - only trajectory. Even if we stopped AI research for a thousand years, itās hard to imagine a future where we wouldnāt eventually resume it. That's what humans do; improve our technology.
The article points to cloning as a counterexample but thatās not a technological dead end, thatās a moral boundary. If one thinks weāll hold that line forever, Iād call that naĆÆve. When it comes to AGI, thereās no moral firewall strong enough to hold back the drive toward it. Not permanently.
Did you genuinely not understand the point I was making, or are you just being pedantic? "Silicon" obviously refers to current computing substrates, not a literal constraint on all future hardware. If youād prefer I rewrite it as "in non-biological substrates," Iām happy to oblige - but I have a feeling you already knew that.
I havenāt claimed that it is. The point is, the only two plausible scenarios I can think of where we donāt eventually reach AGI are: either we destroy ourselves before we get there, or thereās something fundamentally mysterious about the biological computer that is the human brain - something that allows it to process information in a way we simply canāt replicate any other way.
I donāt think thatās the case, since both the brain and computers are made of matter, and matter obeys the laws of physics. But itās at least conceivable that there could be more to it.
I personally think that the additional component (suppose it's energy) that modern approaches miss is the sheer amount of entropy a human brain gets - plenty of many times duplicated sensory signals with pseudo-random fluctuations. I don't know how one can use lots of entropy to replace lots of computation (OK, I know what Monte-Carlo method is, just how it applies to AI), but superficially this seems to be the way that will be taken at some point.
On your point - I agree.
I'd say we might reach AGI soon enough, but it will be impractical to use as compared to a human.
While the matching efficiency is something very far away, because a human brain has undergone, so to say, an optimization\compression taking the energy of evolution since the beginning of life on Earth.
A lot of people making baseless claims about it being inevitable...i mean it could happen but the hard problem of consciousness is not inevitable to solve
Cataclysms notwithstanding, human-level AI is inevitable. That doesn't have to mean that it'll be next week, or even next century, but it will happen.
The only way it won't is if humans are wiped out. (And even then there might be extra-terrestrials who get there where we didn't. Human-level doesn't have to mean invented by humans.)
Why would we want to? 99% of the issues people have with "AI" are just problems with society more broadly that AI didn't really cause, only exacerbated. I think it's absurd to just reject this entire field because of a bunch of shitty fads going on right now with LLMs and image generators.
Don't confuse AGI with LLMs. Both being AI systems is the only thing they have in common. They couldn't be further apart when it comes to cognitive capabilities.
50 Comments
terrific@lemmy.ml · 48 pts · 1y
We're not even remotely close. The promise of AGI is part of the AI hype machine and taking it seriously is playing into their hands.
Irrelevant at best, harmful at worst š¤·
Perspectivist@feddit.uk · 3 pts · 1y
Thatās just the other side of the same coin whose flip side claims AGI is right around the corner. The truth is, you couldnāt possibly know either way.
ExLisper@lemmy.curiana.net · 11 pts · 1y
I think the argument is we're not remotely close when considering the specific techniques used by current generation of AI tools. Of course people can make new discovery any day and achieve AGI but it's a different discussion.
terrific@lemmy.ml · 3 pts · 1y
That's true in a somewhat abstract way, but I just don't see any evidence of the claim that it is just around the corner. I don't see what currently existing technology can facilitate it. Faster-than-light travel could also theoretically be just around the corner, but it would surprise me if it was, because we just don't have the technology.
On the other hand, the people who push the claim that AGI is just around the corner usually have huge vested interests.
ZILtoid1991@lemmy.world · 3 pts · 1y
"Dude trust me, just give me 40 billion more dollars, lobby for complete deregulation of the industry, and get me 50 more petabytes of data, then we will have a little human in the computer! RealshitGPT will have human level intelligence!"
cyd@lemmy.world · 1 pts · 1y
In some dimensions, current day LLMs are already superintelligent. They are extremely good knowledge retrieval engines that can far outperform traditional search engines, once you learn how properly to use them. No, they are not AGIs, because they're not sentient or self-motivated, but I'm not sure those are desirable or useful dimensions of intellect to work towards anyway.
terrific@lemmy.ml · 2 pts · 1y
I think that's a very generous use of the word "superintelligent". They aren't anything like what I associate with that word anyhow.
I also don't really think they are knowledge retrieval engines. I use them extensively in my daily work, for example to write emails and generate ideas. But when it comes to facts they are flaky at best. It's more of a free association game than knowledge retrieval IMO.
qt0x40490FDB@lemmy.ml · -10 pts · 1y
How do you know weāre not remotely close to AGI? Do you have any expertise on the issue? And expertise is not āI can download Python libraries and use themā it is āI can explain the mathematics behind what is going on, and understand the technical and theoretical challengesā.
AnarchoEngineer@lemmy.dbzer0.com · 27 pts · 1y
Engineer here with a CS minor in case you care about ethos: We are not remotely close to AGI.
I loathe python irrationally (and I guess Iām masochist who likes to reinvent the wheel programming wise lol) so Iāve written my own neural nets from scratch a few times.
Most common models are trained by gradient descent, but this only works when you have a specific response in mind for certain inputs. You use the difference between the desired outcome and actual outcome to calculate a change in weights that would minimize that error.
This has two major preventative issues for AGI: input size limits, and determinism.
The weight matrices are set for a certain number of inputs. Unfortunately you canāt just add a new unit of input and assume the weights will be nearly the same. Instead you have to retrain the entire network. (This problem is called transfer learning if you want to learn more)
This input constraint is preventative of AGI because it means a network trained like this cannot have an input larger than a certain size. Problematic since the illusion of memory that LLMs like ChatGPT have comes from the fact they run the entire conversation through the net. Also just problematic from a size and training time perspective as increasing the input size exponentially increases basically everything else.
Point is, current models are only able to simulate memory by literally holding onto all the information and processing all of it for each new word which means there is a limit to its memory unless you retrain the entire net to know the answers you want. (And itās slow af) Doesnāt sound like a mind to meā¦
Now determinism is the real problem for AGI from a cognitive standpoint. The neural nets youāve probably used are not thinking⦠at all. They literally are just a complicated predictive algorithm like linear regression. Iām dead serious. Itās basically regression just in a very high dimensional vector space.
ChatGPT does not think about its answer. It doesnāt have any sort of object identification or thought delineation because it doesnāt have thoughts. You train it on a bunch of text and have it attempt to predict the next word. If itās off, you do some math to figure out what weight modifications would have lead it to a better answer.
All these models do is what they were trained to do. Now they were trained to be able to predict human responses so yeah it sounds pretty human. They were trained to reproduce answers on stack overflow and Reddit etc. so they can answer those questions relatively well. And hey it is kind of cool that they can even answer some questions they werenāt trained on because itās similar enough to the questions they werenāt trained on⦠but itās not thinking. It isnāt doing anything. The program is just multiplying numbers that were previously set by an input to find the most likely next word.
This is why LLMs canāt do math. Because they donāt actually see the numbers, they donāt know what numbers are. They donāt know anything at all because theyāre incapable of thought. Instead there are simply patterns in which certain numbers show up and the model gets trained on some of them but you can get it to make incredibly simple math mistakes by phrasing the math slightly differently or just by surrounding it with different words because the model was never trained for that scenario.
Models can only āknowā as much as what was fed into them and hey sometimes those patterns extend, but a lot of the time they donāt. And you canāt just say āyou were wrongā because the model isnāt transient (capable of changing from inputs alone). You have to train it with the correct response in mind to get it to ālearnā which again takes time and really isnāt learning or intelligence at all.
Now there are some more exotic neural networks architectures that could surpass these limitations.
Currently Iām experimenting with Spiking Neural Nets which are much more capable of transfer learning and more closely model biological neurons along with other cool features like being good with temporal changes in input.
However, there are significant obstacles with these networks and not as much research because they only run well on specialized hardware (because they are meant to mimic biological neurons who run simultaneously) and you kind of have to train them slowly.
You can do some tricks to use gradient descent but doing so brings back the problems of typical ANNs (though this is still possibly useful for speeding up ANNs by converting them to SNNs and then building the neuromorphic hardware for them).
SNNs with time based learning rules (typically some form of STDP which mimics Hebbian learning as per biological neurons) are basically the only kinds of neural nets that are even remotely capable of having thoughts and learning (changing weights) in real time. Capable as in āthis could have discrete time dependent waves of continuous self modifying spike patterns which could theoretically be thoughtsā not as in āwe can make something that thinks.ā
Like these neural nets are good with sensory input and thatās about as far as weāve gotten (hyperbole but not by that much). But these networks are still fascinating, and they do help us test theories about how the human brain works so eventually maybe weāll make a real intelligent being with them, but that day isnāt even on the horizon currently
In conclusion, we are not remotely close to AGI. Current models that seem to think are verifiably not thinking and are incapable of it from a structural standpoint. You cannot make an actual thinking machine using the current mainstream model architectures.
The closest alternative that might be able to do this (as far as Iām aware) is relatively untested and difficult to prototype (trust me Iām trying). Furthermore the requirements of learning and thinking largely prohibit the use of gradient descent or similar algorithms meaning training must be done on a much more rigorous and time consuming basis that is not economically favorable. Ergo, weāre not even all that motivated to move towards AGI territory.
Lying to say we are close to AGI when we arenāt at all close, however, is economically favorable which is why you get headlines like this.
Badabinski@kbin.earth · 5 pts · 1y
This is a fantastic response. I'm saving this so I can use it to show people that LLMs are not thinking machines.
slaacaa@lemmy.world · 5 pts · 1y
Wow, what an insightful answer.
I have been trying to separate the truth from the hype, and learn more about how LLMs work, and this explanation has been one of the best one Iāve read on the topic. You strike a very good balance by going deep enough, but still keeping it understandable.
A question: I remember using Wolfram Alpha a lot back in university 15+ years ago. From a user perspective, it seems very similar to LLMs, but it was very accurate with math. From this, I take that modern LLMs are not the evolution of that model, but WA still appeared to be ahead of itās time. What is/was the difference?
AnarchoEngineer@lemmy.dbzer0.com · 5 pts · 1y
Thanks, I almost didnāt post because it was an essay of a comment lol, glad you found it insightful
As for Wolfram Alpha, Iām definitely not an expert but Iād guess the reason it was good at math was that it would simply translate your problem from natural language into commands that could be sent to a math engine that would do the actual calculation.
So basically act like a language translator but for typed out math to a programming language for some advanced calculation program (like wolfram Mathematica)
Again, this is just speculation because Iām a bit too tired to look into it rn, but it seems plausible since we had basic language translators online back then (I thinkā¦) and Iād imagine parsing written math is probably easier than natural language translation
Veidenbaums@lemmy.ml · 2 pts · 1y
Thank you for great comment!
terrific@lemmy.ml · 8 pts · 1y
I hold a PhD in probabilistic machine learning and advise businesses on how to use AI effectively for a living so yes.
IMHO, there is simply nothing indicating that it's close. Sure LLMs can do some incredibly clever sounding word-extrapolation, but the current "reasoning models" still don't actually reason. They are just LLMs with some extra steps.
There is lots of information out there on the topic so I'm not going to write a long justification here. Gary Marcus has some good points if you want to learn more about what the skeptics say.
qt0x40490FDB@lemmy.ml · 1 pts · 1y
So, how would you define AGI, and what sorts of tasks require reasoning? I would have thought earning the gold medal on the IMO would have been a reasoning task, but Iām happy to learn why Iām wrong.
terrific@lemmy.ml · 2 pts · 1y
I definitely think that's remarkable. But I don't think scoring high on an external measure like a test is enough to prove the ability to reason. For reasoning, the process matters, IMO.
Reasoning models work by Chain-of-Thought which has been shown to provide some false reassurances about their process https://arxiv.org/abs/2305.04388 .
Maybe passing some math test is enough evidence for you but I think it matters what's inside the box. For me it's only proved that tests are a poor measure of the ability to reason.
qt0x40490FDB@lemmy.ml · 2 pts · 1y
Iām sorry, but this reads to me like āI am certain I am right, so evidence that implies Iām wrong must be wrong.ā And while sometimes that really is the right approach to take, more often than not you really should update the confidence in your hypothesis rather than discarding contradictory data.
But, there must be SOMETHING which is a good measure of the ability to reason, yes? If reasoning is an actual thing that actually exists, then it must be detectable, and there must be a way to detect it. What benchmark do you purpose?
You donāt have to seriously answer, but I hope you see where Iām coming from. I assume youāve read Searle, and I cannot express to you the contempt in which I hold him. I think, if we are to be scientists and not philosophers (and good philosophers should be scientists too) we have to look to the external world to test our theories.
For me, what goes on inside does matter, but what goes on inside everyone everywhere is just math, and I havenāt formed an opinion about what math is really most efficient at instantiating reasoning, or thinking, or whatever you want to talk about.
To be honest, the other day I was convinced it was actually derivatives and integrals, and, because of this, that analog computers would make much better AIs than digital computers. (But Hava Siegelmannās book is expensive, and, while I had briefly lifted my book buying moratorium, I think I have to impose it again).
Hell, maybe Penrose is right and we need quantum effects (I really really really doubt it, but, to the extent that it is possible for me, I try to keep an open mind).
š¤·āāļø
terrific@lemmy.ml · 1 pts · 1y
I'm not sure I can give a satisfying answer. There are a lot of moving parts here, and a big issue here is definitions which you also touch upon with your reference to Searle.
I agree with the sentiment that there must be some objective measure of reasoning ability. To me, reasoning is more than following logical rules. It's also about interpreting the intent of the task. The reasoning models are very sensitive to initial conditions and tend to drift when the question is not super precise or if they don't have sufficient context.
The AI models are in a sense very fragile to the input. Organic intelligence on the other hand is resilient and also heuristic. I don't have any specific idea for the test, but it should test the ability to solve a very ill-posed problem.
cmhe@lemmy.world · 2 pts · 1y
I think we also should require to set some energy limits to those tests. Before it was assumed that those tests are done by humans, that can do those tests after eating some crackers and a bit of water.
Now we are comparing that to massive data centers that need nuclear reactors to have enough power to work through these problems...
qt0x40490FDB@lemmy.ml · 1 pts · 1y
Gary Marcus is certainly good. Itās not as if I think say, LeCun, or any of the many people who think that LLMs arenāt the way are morons. I donāt think anyone thinks all the problems are currently solved. And I think long time lines are still plausible, but, I think dismissing short time line out of hand is thoughtless.
My main gripe is how certain people are about things they know virtually nothing about. And how slap dashed their reasoning is. It seems to me most peopleās reasoning goes something like āthere is no little man in the box, itās just math, and math canāt think.ā Of course, they say it with a lot fancier words, like āitās just gradient decentā as if human brains couldnāt have gradient decent baked in anywhere.
But, out of interest what is your take on the Stochastic Parrot? I find the arguments deeply implausible.
terrific@lemmy.ml · 1 pts · 1y
I'm not saying that we can't ever build a machine that can think. You can do some remarkable things with math. I personally don't think our brains have baked in gradient descent, and I don't think neural networks are a lot like brains at all.
The stochastic parrot is a useful vehicle for criticism and I think there is some truth to it. But I also think LMMs display some super impressive emergent features. But I still think they are really far from AGI.
Eranziel@lemmy.world · 8 pts · 1y
Part of this is a debate on what the definition of intelligence and/or consciousness is, which I am not qualified to discuss. (I say "discuss" instead of "answer" because there is not an agreed upon answer to either of those.)
That said, one of the main purposes of AGI would be able to learn novel subject matter, and to come up with solutions to novel problems. No machine learning tool we have created so far is capable of that, on a fundamental level. They require humans to frame their training data by defining what the success criteria is, or they spit out the statistically likely human-like response based on all of the human-generated content they've consumed.
In short, they cannot understand a concept that humans haven't yet understood, and can only echo solutions that humans have already tried.
qt0x40490FDB@lemmy.ml · -4 pts · 1y
I donāt see why AGI must be conscious, and the fact that you even bring it up makes me think you havenāt thought too hard about any of this.
When you say ānovel answersā what is it you mean? The questions on the IMO have never been asked to any human before the Math Olympiad, and almost all humans cannot answer those quesion.
Why does answering those questions not count as novel? What is a question whose answer you would count as novel, and which you yourself could answer? Presuming that you count yourself as intelligent.
gandalf_der_12te@discuss.tchncs.de · 5 pts · 1y
AI does not have genetics and therefore no instincts that was shaped by billions of years of evolution,
so when presented with a challenge that doesn't appear in its training data, such as whether to love your neighbor or not, it might not be able to answer because that exact scenario doesn't appear in its training data.
humans can answer it instinctively because we have billions of years of experience behind us backing us up and providing us with a solid long-term positive decision-making capability.
gandalf_der_12te@discuss.tchncs.de · 14 pts · 1y
AI will not threaten humans due to sadism or boredom, but because it takes jobs and makes people jobless.
When there is lower demand for human labor, according to the rule of supply and demand, prices (aka. wages) for human labor go down.
The real crisis is one of sinking wages, lack of social safety nets, and lack of future perspective for workers. That's what should actually be discussed.
Zorque@lemmy.world · 0 pts · 1y
But scary robots will take over the world! That's what all the movies are about! If it's in a movie, it has to be real.
Vinstaal0@feddit.nl · 0 pts · 1y
Not sure if we will even really notice that in our lifetime, it is taking decades to get things like invoice processing to automate. Heck in the US they can't even get proper bank connections made.
Also, tractors have replaced a lot of workers on the land, computers have both lost a lot of jobs in offices and created a lot at the same time.
Jobs will change, that's for sure and I think most of the heavy labour jobs will become more expensive since they are harder to replace.
Asafum@feddit.nl · 11 pts · 1y
Ummm no? If moneyed interests want it then it happens. We have absolutely no control over whether it happens. Did we stop Recall from being forced down our throats with windows 11? Did we stop Gemini from being forced down our throats?
If capital wants it capital gets it. :(
drapeaunoir@lemmy.dbzer0.com · 21 pts · 1y
š³ unless we destroy capitalism? šš¾šš¾
masterofn001@lemmy.ca · 1 pts · 1y
The only problem with destroying capitalism is deciding who gets all the nukes.
drapeaunoir@lemmy.dbzer0.com · 3 pts · 1y
Capitalism is just an economic system, I'm not sure what nukes has to do with it. It's not like billionaires directly own them, and we have to distribute the "nuke wealth" to the people or anything lol
qt0x40490FDB@lemmy.ml · 3 pts · 1y
In the US, sure, but there have been class revolts in other nations. Iām not saying they lead to good outcomes, but king Louis XVI was rich. And being rich did not save him. There was a capitalist class in China during the cultural revolution. They didnāt make it through. If it means we wonāt go extinct, why can we have a revolution to prevent extinction?
BroBot9000@lemmy.world · 3 pts · 1y
Use Linux and donāt have any of those issues.
Get off the capitalist owned platforms.
scarabic@lemmy.world · 3 pts · 1y
Couldnāt we have a good old fashioned butlerian jihad?
Perspectivist@feddit.uk · 10 pts · 1y
The path to AGI seems inevitable - not because itās around the corner, but because of the nature of technological progress itself. Unless one of two things stops us, weāll get there eventually:
Either thereās something fundamentally unique about how the biological brain processes information - something that cannot, even in principle, be replicated in silicon,
Or we wipe ourselves out before we get the chance.
Barring those, the outcome is just a matter of time. This argument makes no claim about timelines - only trajectory. Even if we stopped AI research for a thousand years, itās hard to imagine a future where we wouldnāt eventually resume it. That's what humans do; improve our technology.
The article points to cloning as a counterexample but thatās not a technological dead end, thatās a moral boundary. If one thinks weāll hold that line forever, Iād call that naĆÆve. When it comes to AGI, thereās no moral firewall strong enough to hold back the drive toward it. Not permanently.
rottingleaf@lemmy.world · -2 pts · 1y
As if silicon were the only technology we have to build computers.
Perspectivist@feddit.uk · 4 pts · 1y
Did you genuinely not understand the point I was making, or are you just being pedantic? "Silicon" obviously refers to current computing substrates, not a literal constraint on all future hardware. If youād prefer I rewrite it as "in non-biological substrates," Iām happy to oblige - but I have a feeling you already knew that.
rottingleaf@lemmy.world · -4 pts · 1y
And why is "non-biological" a limitation?
Perspectivist@feddit.uk · 3 pts · 1y
I havenāt claimed that it is. The point is, the only two plausible scenarios I can think of where we donāt eventually reach AGI are: either we destroy ourselves before we get there, or thereās something fundamentally mysterious about the biological computer that is the human brain - something that allows it to process information in a way we simply canāt replicate any other way.
I donāt think thatās the case, since both the brain and computers are made of matter, and matter obeys the laws of physics. But itās at least conceivable that there could be more to it.
rottingleaf@lemmy.world · -2 pts · 1y
I personally think that the additional component (suppose it's energy) that modern approaches miss is the sheer amount of entropy a human brain gets - plenty of many times duplicated sensory signals with pseudo-random fluctuations. I don't know how one can use lots of entropy to replace lots of computation (OK, I know what Monte-Carlo method is, just how it applies to AI), but superficially this seems to be the way that will be taken at some point.
On your point - I agree.
I'd say we might reach AGI soon enough, but it will be impractical to use as compared to a human.
While the matching efficiency is something very far away, because a human brain has undergone, so to say, an optimization\compression taking the energy of evolution since the beginning of life on Earth.
Codpiece@feddit.uk · 8 pts · 1y
Human level? Thatās not setting the bar very high. Surely the aim would be to surpass human, or why bother?
Outwit1294@lemmy.today · 2 pts · 1y
Yeah. Cheap labor is so much better than this bullshit
SparrowHawk@feddit.it · 7 pts · 1y
A lot of people making baseless claims about it being inevitable...i mean it could happen but the hard problem of consciousness is not inevitable to solve
palordrolap@fedia.io · 5 pts · 1y
Cataclysms notwithstanding, human-level AI is inevitable. That doesn't have to mean that it'll be next week, or even next century, but it will happen.
The only way it won't is if humans are wiped out. (And even then there might be extra-terrestrials who get there where we didn't. Human-level doesn't have to mean invented by humans.)
SpicyLizards@reddthat.com · 4 pts · 1y
We can change course if we can change course on capitalism
markovs_gun@lemmy.world · 4 pts · 1y
Why would we want to? 99% of the issues people have with "AI" are just problems with society more broadly that AI didn't really cause, only exacerbated. I think it's absurd to just reject this entire field because of a bunch of shitty fads going on right now with LLMs and image generators.
Etterra@discuss.online · 2 pts · 1y
Honestly I welcome our AI overlords. They can't possibly fuck things up harder than we have.
AngryRobot@lemmy.world · 2 pts · 1y
Can't they?
Deathgl0be@lemmy.world · 1 pts · 1y
Itās just a cash grab to take peoples jobs and give it to a chat bot thatās fed Wikipediaās data on crack.
Perspectivist@feddit.uk · 1 pts · 1y
Don't confuse AGI with LLMs. Both being AI systems is the only thing they have in common. They couldn't be further apart when it comes to cognitive capabilities.