Earlier quoted context omitted.
Per Anthropic’s RCA linked in Ops post for September 2025 issues: “… To state it plainly: We never reduce model quality due to demand, time of day, or server load. …” So according to Anthropic they are not tweaking quality setting due to demand.
I guess I just don't know how to square that with my actual experiences then. I've seen sporadic drops in reasoning skills that made me feel like it was January 2025, not 2026 ... inconsistent.
Claude Code daily benchmarks for degradation tracking
141–150 of 372 posts
Re: Claude Code daily benchmarks for degradation tracking
#142Earlier quoted context omitted.
I guess I just don't know how to square that with my actual experiences then. I've seen sporadic drops in reasoning skills that made me feel like it was January 2025, not 2026 ... inconsistent.
I wouldn't doubt that these companies would deliberately degrade performance to manage load, but it's also true that humans are notoriously terrible at identifying random distributions, even with something as simple as a coin flip. It's very possible that what you view as degradation is just "bad RNG".
these things are by definition hard to reason about
Re: Claude Code daily benchmarks for degradation tracking
#143Earlier quoted context omitted.
Sounds more like a sound business plan than a conspiracy theory.
It sounds like fraud to me
Re: Claude Code daily benchmarks for degradation tracking
#144Earlier quoted context omitted.
Any chance you’re just learning more about what the model is and is not useful for?
I dunno about everyone else but when I learn more about what a model is and is not useful for, my subjective experience improves, not degrades.
Re: Claude Code daily benchmarks for degradation tracking
#145Re: Claude Code daily benchmarks for degradation tracking
#146Earlier quoted context omitted.
Load just makes LLMs behave less deterministically and likely degrade. See: https://thinkingmachines.ai/blog/defeating-nondeterminism-in... They don't have to be malicious operators in this case. It just happens.
> malicious It doesn't have to be malicious. If my workflow is to send a prompt once and hopefully accept the result, then degradation matters a lot. If degradation is causing me to silently get worse code output on some of my commits it matters to me. I care about -expected- performance when picking which model to use, not optimal benchmark performance.
The non-determinism means that even with a temperature of 0.0, you can’t expect the outputs to be the same across API calls.
In practice people tend to index to the best results they’ve experienced and view anything else as degradation. In practice it may just be randomness in either direction from the prompts. When you’re getting good results you assume it’s normal. When things feel off you think something abnormal is happening. Rerun the exact same prompts and context with temperature 0 and you might get a different result.
Re: Claude Code daily benchmarks for degradation tracking
#147Why is this happening?
They're "optimizing" costs wherever possible - reducing compute allocations, quantizing models, doing whatever they can to reduce the cost per token, but vehemently insisting that no such things are occurring, that it's all in the users' heads, and using the weaseliest of corporate weasel speak to explain what's happening. They insist it's not happening, then they say something like "oh, it happened but it was an acc…
Re: Claude Code daily benchmarks for degradation tracking
#148Earlier quoted context omitted.
Load just makes LLMs behave less deterministically and likely degrade. See: https://thinkingmachines.ai/blog/defeating-nondeterminism-in... They don't have to be malicious operators in this case. It just happens.
Explain this though. The code is deterministic, even if it relies on pseudo random number generation. It doesn't just happen, someone has to make a conscious decision to force a different code path (or model) if the system is loaded.
e.g
if (batch_size > 1024): kernel_x else: kernel_y
Re: Claude Code daily benchmarks for degradation tracking
#149Earlier quoted context omitted.
Per Anthropic’s RCA linked in Ops post for September 2025 issues: “… To state it plainly: We never reduce model quality due to demand, time of day, or server load. …” So according to Anthropic they are not tweaking quality setting due to demand.
I guess I just don't know how to square that with my actual experiences then. I've seen sporadic drops in reasoning skills that made me feel like it was January 2025, not 2026 ... inconsistent.
Re: Claude Code daily benchmarks for degradation tracking
#150Earlier quoted context omitted.
Load just makes LLMs behave less deterministically and likely degrade. See: https://thinkingmachines.ai/blog/defeating-nondeterminism-in... They don't have to be malicious operators in this case. It just happens.
> malicious It doesn't have to be malicious. If my workflow is to send a prompt once and hopefully accept the result, then degradation matters a lot. If degradation is causing me to silently get worse code output on some of my commits it matters to me. I care about -expected- performance when picking which model to use, not optimal benchmark performance.