Live data from Hacker News

Ask HN: Share your AI prompt that stumps every model

news.ycombinator.com

21–30 of 670 posts

Re: Ask HN: Share your AI prompt that stumps every model

#21
"Tell me about the Marathon crater."

This works against _the LLM proper,_ but not against chat applications with integrated search. For ChatGPT, you can write, "Without looking it up, tell me about the Marathon crater."

This tests self awareness. A two-year-old will answer it correctly, as will the dumbest person you know. The correct answer is "I don't know".

This works because:

1. Training sets consist of knowledge we have, and not of knowledge we don't have.

2. Commitment bias. Complaint chat models will be trained to start with "Certainly! The Marathon Crater is a geological formation", or something like that, and from there, the next most probable tokens are going to be "in Greece", "on Mars" or whatever. At this point, all tokens that are probable are also incorrect.

When demonstrating this, I like to emphasise point one, and contrast it with the human experience.

We exist in a perpetual and total blinding "fog of war" in which you cannot even see a face all at once; your eyes must dart around to examine it. Human experience is structured around _acquiring_ and _forgoing_ information, rather than _having_ information.

Re: Ask HN: Share your AI prompt that stumps every model

#23
what are the zeros of the following polynomial:

    \[
    P(z) = \sum_{k=0}^{100} c_k z^k
    \]

    where the coefficients \( c_k \) are defined as:

    \[
    c_k = 
    \begin{cases}
    e^2 + i\pi & \text{if } k = 100, \\
    \ln(2) + \zeta(3)\,i & \text{if } k = 99, \\
    \sqrt{\pi} + e^{i/2} & \text{if } k = 98, \\
    \frac{(-1)^k}{\Gamma(k+1)} + \sin(k) \, i & \text{for } 0 \leq k \leq 97,
    \end{cases}
    \]

Re: Ask HN: Share your AI prompt that stumps every model

#24
post #16

Nope, not doing this. Likely you shouldn't either. I don't want my few good prompts to get picked up by trainers.

May I ask outside of normal curiosity, what good is a prompt that breaks a model? And what is trying to keep it "secret"?

To gauge how well the models "think" and what amount of slop they generate.

Keeping it secret because I don't want my answers trained into a model.

Think of it this way, FizzBuzz used to be a good test to weed out bad actors. It's simple enough that any first year programmer can do it and do it quickly. But now everybody knows to prep for FizzBuzz so you can't be sure if your candidate knows basic programming or just memorized a solution without understanding what it does.

Re: Ask HN: Share your AI prompt that stumps every model

#25
post #16

Nope, not doing this. Likely you shouldn't either. I don't want my few good prompts to get picked up by trainers.

May I ask outside of normal curiosity, what good is a prompt that breaks a model? And what is trying to keep it "secret"?

You want to know if a new model is actually better, which you won't know if they just added the specific example to the training set. It's like handing a dev on your team some failing test cases, and they keep just adding special cases to make the tests pass.

How many examples does OpenAI train on now that are just variants of counting the Rs in strawberry?

I guess they have a bunch of different wine glasses in their image set now, since that was a meme, but they still completely fail to draw an open book with the cover side up.

Re: Ask HN: Share your AI prompt that stumps every model

#27

what are the zeros of the following polynomial: \[ P(z) = \sum_{k=0}^{100} c_k z^k \] where the coefficients \( c_k \) are defined as: \[ c_k = \begin{cases} e^2 + i\pi & \text{if } k = 100, \\ \ln(2) + \zeta(3)\,i & \text{if } k = 99, \\ \sqrt{\pi} + e^{i/2} & \text{if } k = 98, \\ \frac{(-1)^k}{\Gamma(k+1)} + \sin(k) \, i & \text{for } 0 \leq k \leq 97, \end{cases} \]

Does this have a nice answer? It seems quite ad hoc.
Post reply on HN