this post was submitted on 19 Nov 2025
929 points (99.0% liked)

Technology

76949 readers
3510 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 news or articles.
  3. Be excellent to each other!
  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, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

Microsoft's AI CEO, Mustafa Suleyman, has shared his opinion after recent pushback from users online that are becoming frustrated with Copilot and AI on Windows. In a post on X, Suleyman says he's mind blown by the fact that people are unimpressed with the ability to talk fluently with an AI computer.

His post comes after Windows president Pavan Davuluri was recently met with major backlash from users online for posting about Windows evolving into an agentic OS. His post was so negatively received that he was forced to turn off replies, though Davuluri did later respond to reassure customers that the company was aware of the feedback.

you are viewing a single comment's thread
view the rest of the comments
[–] Knock_Knock_Lemmy_In@lemmy.world -2 points 1 day ago (1 children)

Even as a tool it lacks predictability / reproducability

If you use the same seed on the same model with the same weights you get the same results.

[–] Nalivai@lemmy.world 6 points 1 day ago* (last edited 1 day ago) (1 children)

That's not the predictability we want. If I write a calculator that adds the output of rand() to any result, it will also be repeatable with the same seed on the same machine. It will be non-functional as a calculator though.

[–] Knock_Knock_Lemmy_In@lemmy.world -3 points 1 day ago (2 children)

Depends on your use case. Adding 0.000001*rand() to a large number retains the functionality as a calculator.

Your argument that AI isn't useful may be valid, but claiming that AI is not repeatable is false.

[–] michaelmrose@lemmy.world 8 points 1 day ago (1 children)

AI is in fact not meaningfully repeatable in actual usage patterns.

Agreed. The word "patterns" is an important qualification. LLMs are great for one off tasks, but not as part of a repeatable process.

[–] yermaw@sh.itjust.works 1 points 1 day ago (1 children)

Technically its repeatable under perfect conditions? Probably I don't understand it well enough.

Realistically repeatable when Average Joe gets his hands on it? Not today anyway.

[–] Knock_Knock_Lemmy_In@lemmy.world 2 points 17 hours ago

The seed for the random number generator isn't usually exposed to the user. Also the AI service providers regularly update the model and/or weights, producing different outputs.

If you are running your own LLM on your own hardware you can guarantee repeatablity, but that's not what your average Joe does.