from Hacker News

OpenAI admits that AI writing detectors don’t work

by arunbahl on 9/8/23, 4:13 PM with 6 comments

  • by add-sub-mul-div on 9/8/23, 5:09 PM

    The lie of the existence of reliable detection served its purpose when it was originally claimed this content would poison the corpus of our whole culture. Now that conversation has passed and they don't have to answer the question anymore.
  • by matteoraso on 9/8/23, 7:27 PM

    It's weird that people ever thought that it would. The whole goal of creating an LLM is to make an AI that convincingly writes like a human, which makes it immune to any form of writing detector.
  • by arpowers on 9/8/23, 5:16 PM

        const pattern = /I hope this (\w+) finds you well\./;
    
        if (pattern.test(text)) {
          console.log("is ai.");
        } else {
          console.log("not ai.");
        }