Hacker News new | ask | show | jobs
by elwell 617 days ago
> IMPOSSIBLE to build an AI detector that works longterm

    return Math.random() < Math.pow(0.5, (new Date()).getFullYear() - 2023) ? "Not AI" : "AI";
This should increase in accuracy over time.
1 comments

It turns out that "return 'AI'" is a better strategy when the probability is above 50%: https://www.lesswrong.com/posts/msJA6B9ZjiiZxT6EZ/lawful-unc...
Good point. Here's a patch:

    Math.random = () => 1;