element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Community Hub
Community Hub
Member's Forum WARNING ! AI rots your Brain
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Leaderboard
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Community Hub to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 47 replies
  • Subscribers 528 subscribers
  • Views 1407 views
  • Users 0 members are here
Related

WARNING ! AI rots your Brain

michaelkellett
michaelkellett 2 months ago

From yesterdays Telegraph:

image

The article is based on work done at MIT 

https://www.media.mit.edu/projects/your-brain-on-chatgpt/overview/

https://www.brainonllm.com/

If you follow the second link you can eventually find  .pdf of the full research paper (if you've been using ChatGPT a lot recently you may struggle.)

You have been warned !

MK

  • Sign in to reply
  • Cancel

Top Replies

  • dougw
    dougw 2 months ago +5
    This is a no-brainer. But what does AI have to say for itself on the topic?
  • dougw
    dougw 2 months ago +4
    Calculators rotted our brains. Search engines eliminated the need to learn. AI eliminates the need to think. At risk is human creativity.
  • Jan Cumps
    Jan Cumps 2 months ago +2
    michaelkellett said: (if you've been using ChatGPT a lot recently you may struggle.)
Parents
  • javagoza
    javagoza 2 months ago

    My personal experience prototyping with AI aid often feels like my brain is exploding. This is because, while beneficial in some respects, the process proves quite exhaustive, demanding constant redefinition of specifications, multiple corrections, and frequent rephrasing of prompts to prevent hallucinations, sometimes even requiring a complete reset of the interaction history. I've observed this to be mentally more taxing than developing from scratch, carrying a significant risk if the generated code isn't meticulously verified. Future AI iterations ideally need better context retention and more robust error detection to reduce such extensive manual oversight, especially as complex logic still heavily relies on human expertise.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • javagoza
    javagoza 2 months ago

    My personal experience prototyping with AI aid often feels like my brain is exploding. This is because, while beneficial in some respects, the process proves quite exhaustive, demanding constant redefinition of specifications, multiple corrections, and frequent rephrasing of prompts to prevent hallucinations, sometimes even requiring a complete reset of the interaction history. I've observed this to be mentally more taxing than developing from scratch, carrying a significant risk if the generated code isn't meticulously verified. Future AI iterations ideally need better context retention and more robust error detection to reduce such extensive manual oversight, especially as complex logic still heavily relies on human expertise.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
Children
  • Jan Cumps
    Jan Cumps 2 months ago in reply to javagoza

    At this moment, I think it is more useful to find the relevant APIs, and get example code of how they are used.
    Trying to let it build a working (demo) application, by chatting: no.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • shabaz
    shabaz 2 months ago in reply to javagoza

    (Typing from mobile so have to be brief) Which tools do you use? I'm using paid CoPilot although I think there are better tools now. 

    I don't know how much it retains, but I find it useful even at drafting (based on my comments) the function prototypes or class header files (and guiding it yourself if it's not what is expected, although sometimes it's interesting to see where it goes for a little bit, in case I've missed the woods for the trees), and then it seems to remember the methods and member variables when it comes to the source code, so that it's probably focusing effort on small functions rather than ingesting large volumes of code for generating its output (I'm only guessing though since it's a black box).

    More often than not it also learns to output things in the current code style (e.g. my variable naming conventions) but if it sometimes picks something else, I can nip it in the bud right at the header files, then it remembers that for the rest of the code.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • javagoza
    javagoza 2 months ago in reply to shabaz

    I've been using Copilot at work, but honestly, it's been pretty frustrating. I'm a big fan of Gemini instead.

    For SQL databases, Gemini is absolutely brilliant – it just takes all the boring work right out of it. With Java, it's really good too, but you do need to be clear about the level of abstraction and the design patterns you want so you don't just get generic, copy-pasted code.

    I've noticed huge improvements in its VHDL and SystemVerilog capabilities in recent updates. It's fantastic for generating testbenches, which is super helpful, though I do have to put in extra effort to verify its output. I'm also studying RISC-V processor design in SystemVerilog, and Gemini has been a lifesaver for quickly generating small test programs for the RISC-V instructions I'm implementing

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • shabaz
    shabaz 2 months ago in reply to javagoza

    That's very useful feedback, I'll give Gemini a try at some point.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube