“Falsehood flies, and truth comes limping after it, so that when men come to be undeceived, it is too late; the jest is over, and the tale hath had its effect: […] like a physician, who hath found out an infallible medicine, after the patient is dead.” —Jonathan Swift

  • 141 Posts
  • 301 Comments
Joined 1 year ago
cake
Cake day: July 25th, 2024

help-circle







  • OP, LLMs don’t “know” shit. When they say something that conforms to a preexisting bias of yours, that’s nothing. That should affect the strength of your argument in no capacity. It’s not a knowledge base; it’s a transformer model that exists to tell you what you’re most likely to want to hear given what’s come before.

    The part of the anti-AI crowd who denounce rampant, uncritical use of LLMs but who also shit their pants and clap every time an LLM says something against LLMs tells me they don’t have even a bare minimum understanding of machine learning or of cognitive biases like confirmation bias.

    (Your link results in an internal runtime error btw.)








  • OP, the site you’re linking to is LLM slop. Like seriously just look at this site for a second.

    • There’s zero consistent theme.
    • The images are generated.
    • They’re all “BY JOHN” (no pfp, no last name, no bio, let alone no indication why they’re qualified to write about this cornucopia of shit).
    • It only ever hyperlinks to itself – i.e. the sources may as well be “I made it the fuck up”.
    • The way the articles are structured are LLM slop to a tee – randomly bolding words, meandering prose, overuse of bullet points, jarring logical flow, etc.
    • At least five articles per day from the same “person” despite extensive length, perfect grammar, and alleged research being done.

    Can’t you please link to an actual source to make this claim?







  • TheTechnician27@lemmy.worldtolinuxmemes@lemmy.worldDirty Talk
    link
    fedilink
    English
    arrow-up
    43
    ·
    edit-2
    16 days ago
    • sudo is telling the computer to do this with root privileges.
    • chmod sets permissions.
    • Each digit of that three-digit number corresponds to the owner, the group, and other users, respectively. It’s 0–7, where 0 means no access and 7 means access to read, write, and execute. So 077 is the exact inverse of 700, where 077 means “the owner cannot access their own files, but everyone else can read, write, and execute them”. Corresponding 700 to asexuals is joking that nobody but the owner can even so much as touch the files.
    • / is the root directory, i.e. the very top of the filesystem.
    • The -R flag says to do this recursively downward; in this case, that’s starting from /.

    So here, we’re modifying every single file on the entire system to be readable, writable, and executable by everyone but their owner. And yes, this is supposed to be extremely stupid.