I have done this test extensively days ago, on a dozen models: no one could count - all of them got results wrong, all of them suggested they can't check and will just guess. Until they will be able of procedural thinking they will be radically, structurally unreliable. Structurally delirious. And it is also a good thing that we can check in this easy way - if the producers patched the local fault only, then the abse…
Did you enable reasoning? Qwen3 32b with reasoning enabled gave me the correct answer on the first attempt.
GPT-5: "How many times does the letter b appear in blueberry?"
221–230 of 339 posts
Re: GPT-5: "How many times does the letter b appear in blueberry?"
#222Re: GPT-5: "How many times does the letter b appear in blueberry?"
#223This is consistently reproducible in completions API with `gpt-5-chat-latest` model: ``` curl ' https://api.openai.com/v1/chat/completions ' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer ' \ --data '{ "model": "gpt-5-chat-latest", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "How many times does the letter b appear in blueberry" } ] } ], "temperature": 0, "max…
Re: GPT-5: "How many times does the letter b appear in blueberry?"
#224Seems like they just fixed it: [1]. A "thinking longer for a better answer" message appeared before giving the answer. [1] https://chatgpt.com/share/6897c38b-12b8-800d-9cc2-571adb13bc...
Re: GPT-5: "How many times does the letter b appear in blueberry?"
#225Earlier quoted context omitted.
It clearly is an artifact of tokenization, but I don’t think it’s a “just”. The point is precisely that the GPT system architecture cannot reliably close the gap here; it’s almost able to count the number of Bs in a string, there’s no fundamental reason you could not build a correct number-of-Bs mapping for tokens, and indeed it often gets the right answer. But when it doesn’t you can’t always correct it with things…
> cannot reliably close the gap here Have you got any proof they're even trying? It's unlikely that's something their real customers are paying for.
Re: GPT-5: "How many times does the letter b appear in blueberry?"
#226Re: GPT-5: "How many times does the letter b appear in blueberry?"
#227I have done this test extensively days ago, on a dozen models: no one could count - all of them got results wrong, all of them suggested they can't check and will just guess. Until they will be able of procedural thinking they will be radically, structurally unreliable. Structurally delirious. And it is also a good thing that we can check in this easy way - if the producers patched the local fault only, then the abse…
It’s just a few anecdotes, not data, but that’s two examples of first time correctness so certainly doesn’t seem like luck. If you have more general testing data on this I’m keen to see the results and methodology though.
Re: GPT-5: "How many times does the letter b appear in blueberry?"
#228This is consistently reproducible in completions API with `gpt-5-chat-latest` model: ``` curl ' https://api.openai.com/v1/chat/completions ' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer ' \ --data '{ "model": "gpt-5-chat-latest", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "How many times does the letter b appear in blueberry" } ] } ], "temperature": 0, "max…
hilarious if true, their "gpt-oss-20b" gets it right - however, it still fails on e.g. the German compound word "Dampfschifffahrt" (Dampf-Schiff-Fahrt, steam-ship-journey/ride) because it assumes it's "ff" not "fff"