Personally, I don't think you should ever allow the LLM to write for you or to modify / update anything you're writing. You can use it to get feedback when editing, to explore an idea-space, and to find any topical gaps. But write everything yourself! It's just too easy to give in and slowly let the LLM take over your brain. This article is focused on essay writing, but I swear I've experienced cognitive decline when…
MIT Study Finds AI Use Reprograms the Brain, Leading to Cognitive Decline
371–380 of 589 posts
Re: MIT Study Finds AI Use Reprograms the Brain, Leading to Cognitive Decline
#372Earlier quoted context omitted.
> I wouldn't have that expectation with delegation. Managers tend to hire sub managers to manage their people. You can see this with LLM as well, people see "Oh this prompting is a lot of work, lets make the LLM prompt the LLM".
Note, I'm not saying there are never situations where you'd delegate something that you can do yourself (the whole concept of apprenticeship is based on doing just that). Just that it's not an expectation, e.g., you don't expect a CEO to be able to do the CTO's job. I guess I'm not 100% sure I agree with my original point though, should a programmer working on JavaScript for a website's frontend be able to implement…
Re: MIT Study Finds AI Use Reprograms the Brain, Leading to Cognitive Decline
#373Earlier quoted context omitted.
I like to think of it as a duck-typed abstraction. I have formal specs which guarantee certain things about my software, and the agent has to satisfy those (including performance, etc). Given that, the code the agent generates is essentially fungible in the manner of machine code.
Only if you can write specs precisely enough. For those of us who remember the way software used to be built, we learned that this is basically impossible and that English is a terrible language to even attempt it in. If you do make your specs precise enough, such that 2 different dev shops will produce functionally equivalent software, your specs are equivalent to code.
The value of this is that FOR FREE you can get comprehensive test defintions (unit+e2e), kube/terraform infra setup, documentation stubs, openai specs, etc. It's seriously magical.
Re: MIT Study Finds AI Use Reprograms the Brain, Leading to Cognitive Decline
#374Meanwhile my main use cases for AI outside of work: - Learning how to solder - Learning how to use a multimeter - Learning to build basic circuits on breadboxes - learning about solar panels, mppt, battery management system, and different variations of li-on batteries - learning about LoRa band / meshtastic / how to build my own antenna And every single one of these things I've learned I've also applied practically t…
Re: MIT Study Finds AI Use Reprograms the Brain, Leading to Cognitive Decline
#375Earlier quoted context omitted.
"It can't do 9.9-9.11 or count the number of r's in strawberry!" lol
Since models are given tokens, not letters, to process, the famous issues with counting letters is not indicative of incompetence. They are just sub-sensory for the model. None of us can reliably count the e’s as someone talks to us, either.
a) "know" that they're not able to do it for the reason you've outlined (as in, you can ask about the limitations of LLMs for counting letters in words)
b) still blindly engage with the query and get the wrong answer, with no disclaimer or commentary.
If you asked me how many atoms there are in a chair, I wouldn't just give you a large natural number with no commentary.
Re: MIT Study Finds AI Use Reprograms the Brain, Leading to Cognitive Decline
#376Earlier quoted context omitted.
It's delegation then. We can use different words if you like (and I'm not convinced that delegation isn't colloquially a form of abstraction) but you can't control the world by controlling the categories.
Delegation of intelligence? So one party gets more stupid for the other to be smart?
Re: MIT Study Finds AI Use Reprograms the Brain, Leading to Cognitive Decline
#377Earlier quoted context omitted.
> LLMs, by their very nature are probabilistic. Probabilistic is NOT deterministic. Although I'm on the side of getting my hands dirty, I'm not sure if the difference is that different . A modern compiler embeds a considerable degree of probabilistic behaviour.
> A modern compiler embeds a considerable degree of probabilistic behaviour. Can you give some examples?
Re: MIT Study Finds AI Use Reprograms the Brain, Leading to Cognitive Decline
#378Earlier quoted context omitted.
>These 54 participants were between the ages of 18 to 39 years old (age M = 22.9, SD = 1.69) and all recruited from the following 5 universities in greater Boston area: MIT (14F, 5M), Wellesley (18F), Harvard (1N/A, 7M, 2 Non-Binary), Tufts (5M), and Northeastern (2M) (Figure 3). 35 participants reported pursuing undergraduate studies and 14 postgraduate studies. 6 participants either finished their studies with MSc…
> I would describe the study size and composition as a limitation, and a reason to pursue a larger and more diverse study for confirmation, rather than a reason to expect an "uphill battle" for replication and so forth. Maybe. I believe we both agree it is a critical gap in the research as-is, but whether it is a neutral item or an albatross is an open question. Much of psychology and neuroscience research doesn't re…
Re: MIT Study Finds AI Use Reprograms the Brain, Leading to Cognitive Decline
#379Earlier quoted context omitted.
As the other comment said, LLMs are not an abstraction. An abstraction is a deterministic, pure function, than when given A always returns B. This allows the consumer to rely on the abstraction. This reliance frees up the consumer from having to implement the A->B, thus allowing it to move up the ladder. LLMs, by their very nature are probabilistic. Probabilistic is NOT deterministic. Which means the consumer is neve…
>LLMs, by their very nature are probabilistic. So are compilers, but people still successfully use them. Compilers and LLMs can both be made deterministic but for performance reasons it's convenient to give up that guarantee.
Re: MIT Study Finds AI Use Reprograms the Brain, Leading to Cognitive Decline
#380Earlier quoted context omitted.
There's a difference between learning and the perception/appearance of learning; teachers need to manage this in classrooms, but how do you manage it on your own?
I don’t think this is a critique of llms so much as a general observation that actual deep learning is difficult. I’ve read plenty of books (thanks, Dickens) where I looked at every word on every page but can recall very little of what they meant. You can look at the results from an llm and say “huh cool, I know that now) and do nothing to assimilate that knowledge, or you can think deeply about it and try to fit it…
We have the idea of 'tutorial hell' for programming (particularly gamedev), where people go through the motions of learning without actually progressing.
Until you go apply the skills and check, it's hard to evaluate the effectiveness of a learning method.