Benchmarking Opus 5 on SlopCodeBench

(github.com)

163 points | by dhorthy 4 hours ago

12 comments

  • sothatsit 2 hours ago
    This matches my experience of Opus 5 being a nice improvement over Opus 4.8, but not being revolutionary like Fable felt.

    I’ve now replaced my use of Opus 4.8 xhigh with Opus 5 medium, and I’m using less tokens and it’s quicker. I can understand people being annoyed by its writing style but for getting work done that really doesn’t bother me. I’ve been really enjoying using it.

    • rubicon33 2 hours ago
      I think they neutered Fable. When it first came out it was indeed revolutionary. But what we have today, is not what we had before the ban.
      • swader999 1 hour ago
        Noticed that too. I wonder if these things just degrade over time, perhaps with the way it writes memories about my project as it goes
        • Espressosaurus 1 hour ago
          I’ve observed the degradation, but I suspect what’s happening is they’re tuning it for lower inference costs. Maybe turning down the amount of thinking, maybe quantizing, maybe something else.

          It seems like there’s a week by week and sometimes day by day change in performance when on a subscription plan using their harnesses.

    • fastball 2 hours ago
      Medium vs High? Why? From all the charts I've seen the performance jump is pretty large from med -> high (not as noticeable from high -> xhigh).
      • ValentineC 23 minutes ago
        Medium or low supposedly prevents Opus 5 from overthinking:

        https://xcancel.com/danshipper/status/2080700057892815114

      • conception 48 minutes ago
        https://cognition.com/frontiercode

        Quality vs cost - medium is the sweet (perhaps better too!) spot.

        • dhorthy 43 minutes ago
          my issue with frontier code is that it uses a model judge for quality whereas slop code bench forces a model to grapple with its own garbage code in order to receive a functionality reward
      • sothatsit 1 hour ago
        If I need something smarter I use Fable. Medium works well and is quick. Opus 5 medium feels much better to me than Opus 4.8 medium.
        • dhorthy 1 hour ago
          yeah someone will have to re-run this bench on various effort levels. unfortunately it is not cheap
  • Vgoose 2 hours ago
    Nice! I actually ran across this paper+benchmark recently, too. It's the first I've found that start to aim at some of the non-functional and longitudinal requirements that I think have always been an important part of writing production code.

    It's especially relevant now that models are good enough to solve ~most point-in-time problems.

    Some relevant but disconnected thoughts:

    - deterministic scores are so nice

    - what "maintainable" is is probably some high dimensional space described by these signals; it'd probably require some human labeling to figure out where this space is

    - another signal I've been thinking about and I'm seeing increasingly get brought up is the state space of a system; I'm seeing formal methods pop up a lot recently

    • dhorthy 2 hours ago
      > - what "maintainable" is is probably some high dimensional space described by these signals; it'd probably require some human labeling to figure out where this space is

      this is a nicely succinct way to put this - a multi-dimensional space where no single metric is really useful

      state space of the system is interesting too. I would guess that for any production software with dependencies like databases/third parties that might be too hard to measure, but if you can silo off parts of your system into bounded state machines, it may be a value metric on some module behind a clean interface.

      I think the kubernetes control loop model is a great instance of this, a handful of scoped components that own a control loop across a well-defined state machine, that can operate / recover in the face of most network partitions or downtime - the promise of CRDTs but rather more a pragmatic approach to it

  • Johnny_Bonk 3 hours ago
    I haven't joined your chats in a while but glad to see you put this together, I truly feel as though opus 5 is not much of an improvement. The only time i ever felt a wow factor was opus 4, 4.6 and fable pre trump admin lobotimizing
    • dhorthy 3 hours ago
      yeah this was just a start - the fastest cheapest thing we could try for a brand new model.

      I'm hoping to do some more work with sol/fable in the mix as well as exploring more languages and curating the problem set to include more of the benchmark

      I also kinda felt like opus4.5 was dumber than 4.1 personally, maybe a little biased since 4.5 was 2.5x faster and 2.5x cheaper seems to indicate its a smaller model

    • dan_gee 3 hours ago
      [flagged]
      • scrollaway 3 hours ago
        How is this useful or insightful?

        You ever go to forums full of entomology specialists and tell them you don’t understand their fancy terms?

        • dan_gee 3 hours ago
          My point is that the differences between these models are so minor that obsessively benchmarking them comes across as navel-gazing.
          • joatmon-snoo 2 hours ago
            The evidence that proves a model is actually a step function change is these benchmarks.

            If a model isn’t a step function change? Welcome to research.

          • john_strinlai 1 hour ago
            i find it interesting how you can speak so confidently about model performance when you started the conversation with "As someone who doesn't use AI"
          • Johnny_Bonk 2 hours ago
            like all good science, measure everything
  • killingtime74 3 hours ago
    Did you not benchmark latest GPT 5.6 or GLM 5.1/Kimi K3 because of cost? I can run them if you share how you ran them
    • dhorthy 3 hours ago
      no i'm spinning those up at some point this week. here's the first few prompts I used (claude opus 5 as the research orchestrator), (these were interspersed with lots of tools and assistant messages but it should get you kicked off.

      > fetch this article for slopcodebench and help me run an eval on a subset of problems with opus 5 https://arxiv.org/html/2603.24755v1 > Get all the context, fetch any mentioned repos, and then propose a plan to me.

      > i have an anthropic API key in .... > Let's do the three challenges with Opus 4.8 and Opus 5 and Fable please. I like your minimal set. Let's try it. What do you need from me?

      > Actually I changed my mind. I want to do two of the easy ones you picked and then I want you to pick the one with more checkpoints, maybe one of the harder ones, not the very hardest one but one with a higher number of checkpoints.

      > Actually let's do one easy, one medium, and one hard problem please. If we have a hard problem I'd like to see that.

      > lets rock - i think lets just do opus 4.8 and sonnet 5 and opus 5 since we our ZDR will block fable

  • cesarvarela 21 minutes ago
    Please add Fable; a good benchmark should show that Fable is less prone to just autocomplete and instead pushes back or is at least more tasteful.
  • ajwin 2 hours ago
    To what degree is this a harness/system prompt problem? Models maybe should implement new stuff with as little impact on the existing stuff as possible by default? A simple system prompt for it to always check the code after task completion for proper simplifications, abstractions and cleanups before returning to the user? Instructions to retain "story like" readability of the code.
    • igregoryca 1 hour ago
      At least for Claude Code, putting "run /simplify at the end" in an "implement the plan" skill helps a little. It still often leaves new code in bizarre places, and/or with bad/alien-sounding names and comments.
    • dhorthy 1 hour ago
      I agree this is an option, and the next thing on my radar is to try with a more realistic "factory-shaped" harness where you have feedback from linters and other models after each coding episode that refines the architecture.

      For readability specifically, I've found it hard to get the models to do this with prompting. If you've talked to opus/fable for a long time on prose writing you probably felt this too

  • delbertty 27 minutes ago
    Mostly a harness problem in my experience. Slop accumulates when the agent can touch anything, so constraining it to one seam and having it add alongside rather than edit in place does more than model choice.
  • akurilin 1 hour ago
    Really hoping that all of the attention you're bringing to the longitudinal sloppification of codebases makes it back to the labs and creates some pressure to improve that trait of the models. This new benchmark seems promising.

    At the same time, I imagine it will be hard for them to prioritize this over improving flashy one-shots of impressive zero-to-one feats that demo so well and attract more customers.

    Can we have simonw make "pelican on a bicycle after 1000 requests for iteration" popular?

    • dhorthy 52 minutes ago
      i laughed at the pelican bit its good

      yes the labs will always prioritize the vibeslop dopamine casino as far as I can tell - making the models useful and addictive for unsophisticated users, sometimes at the expense or at the very least at the ignorance of the needs of power users

  • dcl 3 hours ago
    finally the benchmark for me
    • dhorthy 3 hours ago
      i hope that is because you hate slop and not because you write it
  • tamimio 1 hour ago
    So many benchmarks more the models themselves.. just make one unified standard to benchmark all or stop calling it “benchmarking” as this word lost its meaning.
  • knighthacker 2 hours ago
    This is where Opus 5 shines
  • cute_boi 2 hours ago
    Opus 5 is an overconfident stupid model. It tries to generate too much slop, tries to act like everything will fall. I have reversed back to fable and codex sol.
    • dhorthy 2 hours ago
      yes sol is still my daily driver for most coding tasks

      I did find opus 5 quite handy for general knowledge work and visual design, without the cost of fable (e.g. the graphics in this post are made by opus 5)

      but its not noticeably better than opus 4.8 in those regards, and I would not miss it if forced to go back to 4.8

      • roncesvalles 2 hours ago
        I almost prefer Opus 4.8. Opus 5.0 has the overly scholastic tone of Fable but without the intelligence.
    • patwolf 59 minutes ago
      We've been running automated code reviews on claude with a bunch of skills/subagents with different specialties. Any review feedback is then fed back into claude to fix. Since switching to Opus 5 I've noticed the reviews are overly pedantic, and that leads to feedback loops where each fix generates more feedback, which requires more fixes, i.e. slop. I had, for example, a simple SQL migration script with a single CREATE TABLE. After a few rounds of review, it ballooned into a complicated 200 line script.

      I'm not ready to blame Opus 5 for being stupid. Perhaps we have a prompt buried somewhere that's essentially asking it to be pedantic, and it's just obeying the prompt.