Earlier quoted context omitted.
> It makes no sense at all, it's cuckooland, are you all on crazy pills? Frequent LLM usage impairs thinking. The LLM has no connection to reality, and it takes over people's minds.
>Frequent LLM usage impairs thinking Is there hard evidence on this?
Andrej Karpathy: Software in the era of AI [video]
731–740 of 827 posts
Re: Andrej Karpathy: Software in the era of AI [video]
#732Earlier quoted context omitted.
> It makes no sense at all, it's cuckooland, are you all on crazy pills? Frequent LLM usage impairs thinking. The LLM has no connection to reality, and it takes over people's minds.
>Frequent LLM usage impairs thinking Is there hard evidence on this?
https://time.com/7295195/ai-chatgpt-google-learning-school/
Otherwise, read pro-LLM blogs which are mostly rambling nonsense that overpromises while almost no actual LLM written software exists.
You can also see how the few open source developers who jump on the LLM bandwagon now have worse blogging and programming output than they had pre-LLM.
Re: Andrej Karpathy: Software in the era of AI [video]
#733Earlier quoted context omitted.
An output of a fab, just like an output of an LLM, is non-deterministic, but is good enough, or is being optimized to be good enough. Non-determinism is not the problem, it's the quality of the software that matters. You can repeatedly ask me to solve a particular leetcode puzzle, and every time I might output a slightly different version. That's fine as long as the code solves the problem. The software running on th…
Hardware always involves some level of non-determinism, because the physical world is messier than the virtual software world. Every hardware engineer accepts that and learns how to design solutions despite those constraints. But you're right, non-determinism is not the current problem in some fabs, because the whole process has been modeled with it in mind, and it's the yield ratio that needs to be deterministic eno…
Re: Andrej Karpathy: Software in the era of AI [video]
#734Earlier quoted context omitted.
> It makes no sense at all, it's cuckooland, are you all on crazy pills? Frequent LLM usage impairs thinking. The LLM has no connection to reality, and it takes over people's minds.
>Frequent LLM usage impairs thinking Is there hard evidence on this?
Re: Andrej Karpathy: Software in the era of AI [video]
#735I'm a little surprised at how negative he is towards textual interfaces and text for representing information.
Re: Andrej Karpathy: Software in the era of AI [video]
#736I'm not sure about the 1.0/2.0/3.0 classification, but it did lead me to think about LLMs as a programming paradigm: we've had imperative & declarative, procedural & functional languages, maybe we'll come to view deterministic vs. probabilistic (LLMs) similarly. def __main__: You are a calculator. Given an input expression, you compute the result and print it to stdout, exiting 0. Should you be unable to do this, you…
[flagged]
Re: Andrej Karpathy: Software in the era of AI [video]
#737Earlier quoted context omitted.
[flagged]
> It makes no sense at all, it's cuckooland, are you all on crazy pills? Frequent LLM usage impairs thinking. The LLM has no connection to reality, and it takes over people's minds.
Far to early from any of the studies done so far to come to your conclusion.
Re: Andrej Karpathy: Software in the era of AI [video]
#738Earlier quoted context omitted.
> It makes no sense at all, it's cuckooland, are you all on crazy pills? Frequent LLM usage impairs thinking. The LLM has no connection to reality, and it takes over people's minds.
>Frequent LLM usage impairs thinking Is there hard evidence on this?
Longer answer there was that study posted this week that compared it to using search and then what was it…raw thinking or something similar. I could totally understand in certain cases you are not activating parts of your brain as much, I don’t know any of it proves much in aggregate.
Re: Andrej Karpathy: Software in the era of AI [video]
#739Earlier quoted context omitted.
Why do people keep having this reaction to something we're already used to? When you're developing against an API, you're already doing the same thing, planning for what happens when the request hangs, or fails completely, or gives a different response, and so on. Same for basically any IO. It's almost not even new, just that it generates text instead of JSON, or whatever. But we've already been doing "indeterministi…
You’re right about the trees but wrong (hear me out) about the forest. Yes, programming isn’t always deterministic, not just due to the leftpad API endpoint being down, but by design - you can’t deterministically tell which button the user is going to click. So far so good. But, you program for the things that you expect to happen, and handle the rest as errors. If you look at the branching topology of well-written c…
The same could apply to LLMs, or even different runs from the same LLMs.
Re: Andrej Karpathy: Software in the era of AI [video]
#740I'm not sure about the 1.0/2.0/3.0 classification, but it did lead me to think about LLMs as a programming paradigm: we've had imperative & declarative, procedural & functional languages, maybe we'll come to view deterministic vs. probabilistic (LLMs) similarly. def __main__: You are a calculator. Given an input expression, you compute the result and print it to stdout, exiting 0. Should you be unable to do this, you…