[–] 4 points 4 hours ago* (2 children)

Of course there are people trying to find a silver lining to this by conjuring up the hypothetical scenario where a student only uses the AI to aid in learning the material instead of just doing all the work.

First, any convenience in learning the material just reduces your ability to learn it. The friction involved with learning may seem like an inconvenience to be smoothed away, but it turns out that the friction is how learning happens. It's called engaging with the material. This has been the case with previous technologies: handwriting is better for retaining memory than typing (https://pmc.ncbi.nlm.nih.gov/articles/PMC11943480/), although it seems like AI is on an entire new level. (I guess there is some commentary about the sadly common worldview that life is about avoiding inconveniences. I feel like this mindset draws a lot of people to AI.)

Second, there is a very thin line between "helping" you learn the material and just doing the work for you. The temptation to cut corners is always there, and when you have the Corner Cutting Machine at your disposal, you are kidding yourself if you think you will have perfect discipline. Tools influence behavior.

  • source
  • [–] 9 points 1 day ago* (last edited 1 day ago) (3 children)

    Glad to see that OpenAI has not changed in their scummy ways. Despite all that has changed in the meantime, they have kept their time-honored tradition of passing off other people's work as their own.

    One of OpenAI's math announcements a month ago claimed that their results cost only $2000 worth of tokens, which frustrated me because they were likely sweeping away many inconvenient details and almost certainly misrepresenting their true costs. But people took this as a gotcha. This is the same bullshit as the water usage arguments. We are literally seeing city council members signing motherfucking NDAs about this, and you think that water usage numbers provided by the tech companies themselves are going to sway me?

    I am also questioning OpenAI's strategy of strip-mining math for PR, since it seems like advances in math do not actually register that well in the public. From what I remember, the Hugging Face incident got a lot more press than any of the math results.

  • source
  • parent
  • context
  • [–] 12 points 1 week ago* (2 children)

    Phil Aroneanu, Irreplaceable’s executive director and a co-founder of the climate organization 350.org, told me he believes that climate advocates initially floundered because they acted as policy wonks. They thought that making evidence-based arguments about the dangers of melting ice sheets and rising sea levels to receptive congresspeople would be enough to pass nationwide climate legislation. Today, Aroneanu said, movements are built not necessarily on what people think, but instead on what they feel. For climate, that meant fossil-fuel-divestment campaigns, protesting oil pipelines, and the school strikes led by Greta Thunberg. People are already “feeling the squeeze,” Aroneanu told me. “And we should be pointing that anxiety and that anger in the right direction.”

    What is with this attitude of dismissing regular people's opinions as "feelings" in comparison to their own rationality? This is like those people who would really like to be anti-AI but find it more important to nitpick the water usage numbers and point out how agriculture uses so much more water anyway, in order to form a "better" opposition.

  • source
  • Some systems like SynthID (for Google's AI) get around this problem. In fact you don't need to know the LLM's internal state, and defeating it would likely involve breaking up most blocks of 3 words. The oversimplified explanation is that it introduces a function g that gives a score to each word, with the score being (pseudo)randomly determined by your secret key. For each next word the LLM generates, the LLM produces a small list of candidate next words, and the one with the highest score according to g is selected. You should expect that the LLM will generally pick words with a high score, but the score itself is independent of the LLM. To detect a watermark, you need to know g and the secret key, and you check if the average score is much higher than expected from normal text.

    Now, one question is, will this bias to the LLM to favor certain words? The solution is that for each next word, you append the last 3 words (nothing special about 3, just a small number) to the secret key for g, and this repeatedly scrambles which words have a high score. To defeat the watermark, you would need to break up most blocks of 3 words. I'm sure there are deeper issues with this, but I have not studied the topic that much.

  • source
  • parent
  • context
  • [–] 5 points 3 weeks ago (1 child)

    From a technical perspective, I don't really know how to let it track specific users. The goal is that if some AI vendor provides their key, it is easy for them to prove that their AI produced the text. So I guess if a user wanted to show that they generated the text, they could prove it. But usually AI users don't want people knowing that they used the slop cannon. In any case, Anthropic's own announcement states that their watermark does not contain identifying information for users.

    In any case, some proud AI users are now frightened that there might be a way for people to identify that they use such a wonderful tool. How will I ever deliver low quality slop for my contracts now?

    He said he uses AI for code reviews and translations, and worried an AI label on code shipped to clients could raise questions about authorship or trigger contract penalties.

    Having code attributed to Claude "definitely would be not desirable," he said, as he would not want professionally shipped code to carry an invisible marker that could raise questions about authorship, compliance, or client policies.

  • source
  • parent
  • context
  • [–] 12 points 3 weeks ago* (7 children)

    Anthropic is now watermarking the outputs of its AI. For once this is some AI news that doesn't completely piss me off, and it's amusing to see all the uninformed boosters get in a tizzy about this.

    I actually understand at a reasonable level how this watermarking works. A year ago, I watched Scott Aaronson give a talk about it, and from what I know he was somewhat involved in developing the theory behind it while working for OpenAI. But at the time my thought was, "He is naive if he thinks these companies would ever implement this out of the goodness of their hearts." And I was right; Anthropic is only doing watermarking now thanks to the EU AI Act, even though the theory has long been developed.

    Watermarking doesn't mean adding an extra watermark that can be easily removed. It instead directly affects the output of the chatbot itself. Fundamentally, an LLM is still a most-likely-next-word-predictor. More precisely, an LLM produces a probability distribution of what the next word can be. For example, "my pet is a ..." could give a distribution of 60% dog, 30% cat, and 10% axolotl. Normally, an LLM would randomly choose the next word based on this distribution, and this is one reason why LLMs are nondeterministic (there's another parameter called "temperature" that affects this, but no need to get into that).

    With watermarking, instead of a truly random choice, the randomness instead comes from a cryptographic pseudorandom generator seeded with a secret key from the AI company. If you don't know the secret key, then you can't really tell that watermarking was used. But if you do know the secret key, then the idea is you can tell when the text was generated by the LLM because you know exactly what word should be next. It would be a freak coincidence if some non-AI text just happened to choose the correct next word every time. Thus, you can provide a service to tell if some text was generated by the LLM. (This technically makes the LLM "deterministic", in a completely useless sense.)

    Now, I think this is a step in the right direction, but it has its limits. The biggest problem is that you don't want people to just move to a different LLM without watermarking, and that's exhibit #832593 why government regulation is important. Another issue is that sometimes there is very little randomness in what the next word should be ("The first president of the USA is George ..."). Finally, watermarking can be defeated by editing the output, although you would have to break up most of the blocks of consecutive words. I have a feeling most AI users are not the type to put in extra effort after copy-pasting the output directly from the chat window.

    I suppose it will discourage some of the "use cases" of LLMs, such as drowning the world with spam Slopstack essays. Ah, who am I kidding? Everyone could already tell it's AI generated, they don't care!

  • source
  • [–] 14 points 1 month ago (3 children)

    Mathematicians are not entirely happy about OpenAI's ten mathematical results. As it turns out, the proofs did not cite many of the existing techniques in the literature. The plagiarism bot is still a plagiarism bot. https://www.scientificamerican.com/article/openais-latest-math-breakthroughs-commit-research-misconduct-experts-say/

    “They are running roughshod over the work of others who came before them in a deliberate way,” says Steven Miller, a mathematician at Yeshiva University, who argues that OpenAI has effectively plagiarized his own research. “It seems completely systematic to me, and it points to research misconduct.”

    The LLM-generated proof hinges on a particular mathematical argument that it presented as its own but that actually first appeared in a 2016 paper by Miller and a collaborator.

    The discovery stunned Francesco Fournier-Facio, a mathematician at the University of Cambridge, who studies group theory—at least until he “engaged with this breakthrough as I would if a human had written it,” he says. The result, he and some of his colleagues found, wasn’t as novel as it first appeared. Like a number of recent AI breakthroughs, it pasted together ideas from the mathematical literature to build a new theorem. Once again, the LLM’s trick is its superhuman patience for assembling puzzle pieces, not the ability to make some profound intellectual leap.

    In particular, Astra’s key mathematical step combined ideas first found in two papers from 2016 and 2019. Andreas Thom, a mathematician at the Dresden University of Technology, who co-authored the 2019 paper, summarized the result on MathOverflow.com, calling it “creative and at the same time elementary.”

  • source
  • [–] 12 points 1 month ago* (6 children)

    Clammy Sammy acknowledges Ed Zitron for the first time! https://xcancel.com/sama/status/2084663673570971990

    His response is the Live Laugh Love of 2015 Silicon Valley platitudes:

    i would rather be an optimist and work hard than a pessimist posting about why things won't work.

    it's much more difficult and the most likely path is failure, but society fails if people don't try.

    no amount of "it will never work" essays will drive society forward.

    Of course, building data centers that use untold amounts of rare earth metals, electricity, and water while spewing out tons of pollution and scraping every last bit of human content in order to remove people from their jobs by doing them badly is what drives society forward. Profits fail if oligarchs don't try. Actually, the AI companies don't even need profits.

  • source
  • view more: next ›