this post was submitted on 08 Mar 2024
72 points (86.7% liked)

Technology

59148 readers
2721 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 8 months ago

Actually most (I think all, but not 99% positive) machine learning models are incapable of doing straight arithmetic. Due to the way they are built ML models, including deep learning models, can only learn relationships in a limited input space.

This is most apparent when you test LLMs on different arithmetic operations:

  • For addition, it does okay up until you get to millions or billions
  • Multiplication I think breaks at the 100/1000 level
  • exponents almost break immediately
  • Give it decimal values and it also breaks relatively quickly for any operation.

This has to do with the fact that LLMs are effectively multiple layers of linear functions, so higher order operations break down faster.