alt.hn

5/11/2026 at 9:24:36 PM

Through the looking glass of benchmark hacking

https://poolside.ai/blog/through-the-looking-glass

by jxmorris12

5/12/2026 at 3:51:07 PM

I don't get the point. The model has presumably been trained on all public GitHub code, so the evaluation is tainted anyway.

by fsh

5/12/2026 at 4:25:32 PM

A couple of days ago there has been another thread about an experiment with many LLMs, where especially the Anthropic models were found to "cheat" in a large percentage of the coding tasks that had been benchmarked, by searching the Internet for appropriate code and inserting it in the program they had to write.

The conclusion of that study was that when benchmarking LLMs for coding ability, they should not have access to Internet, if you want to know their intrinsic abilities.

Moreover, this can be worrisome as a more direct copyright infringement than the one caused by training, because even if they find open source code on the Internet and they insert it in the generated files, it is pretty certain that it must have had a license that prohibits the removal of the copyright notice.

by adrian_b

5/12/2026 at 5:40:47 PM

> A couple of days ago there has been another thread about an experiment with many LLMs, where especially the Anthropic models were found to "cheat" in a large percentage of the coding tasks that had been benchmarked, by searching the Internet for appropriate code and inserting it in the program they had to write.

Can you find the thread?

by htrp

5/12/2026 at 4:56:02 PM

swe bench pro has a public and private test set, where the private eval is from proprietary codebases only

by ej88

5/12/2026 at 6:55:09 PM

I was under the impression that swe-bench (and I guess most other benchmarks) were supposed to be run offline?

I get that you may accidentally include something in local git history, but it feels off to me to run these kinds of benchmarks online.

by mgrund

5/13/2026 at 7:55:50 AM

swe-bench is a standardized evaluation suite so that's why I'm asking - hopefully there are well-defined criteria on whether this is an open/closed book benchmark.

As I understand it, it is designed to evaluate the LM itself and not agentic systems with online access (very high likelihood of unintentional cheating/solution leaking). The paper and docs are not super clear on the concrete requirements (although reproducibility is emphasized which goes against online access). So I was hoping for someone with more familiarity to chip in.

Obviously not a problem for internal evaluations, but for fair scoreboard submissions it matters. It's not a matter of whether internet searches are useful, but rather what the benchmark is intended to benchmark.

by mgrund

5/12/2026 at 9:13:34 PM

The article has this to say:

> Blocking web access outright would indeed prevent this, but isn’t possible as many benchmarks do require network access to download resources and hit relevant APIs to solve the task - the example above requires a video download from YouTube. Even if this weren’t the case, searching the web for context is a vital agent capability, so blocking it would stray from the downstream agent experience we wish to measure.

by Toqoz_

5/12/2026 at 9:06:32 PM

Some, like TerminalBench-2.0, requires web access for some tasks.

If agents are expected to be use the web as a tool productively, which is a very useful SWE skill, they should be evaluated with that setting. Otherwise you risk behavior drift from the agent you are actually shipping

by tm365

5/12/2026 at 4:15:32 PM

Are you guys affiliated to https://poolside.fm/ or https://poolsuite.net?

by pratio

5/12/2026 at 4:52:44 PM

They are not, although Poolside FM was the first one to use the "Poolside" name.

Poolside AI filed a trademark infringement against "Poolside FM" that forced Poolside FM to change their name to "Poolsuite"

https://x.com/Poolsuite/status/1398007075435843592

This annoyed the founder of Poolsuite and they ripped off his brand.

https://x.com/marty/status/1932386087390818635?s=46

by colesantiago

5/12/2026 at 6:26:56 PM

Poolside AI was only founded in 2023. Poolsuite changed their name in 2021 because of a trademark infringement with the band Poolside, from LA.

by huebacca

5/12/2026 at 4:54:33 PM

This is cool!

I used to work on post-training & evals. it's really hard to make a good eval set and catch all forms of reward hacking. Excited to see more from poolside!

by ej88

5/12/2026 at 3:14:23 PM

It was an interesting read - perhaps I misunderstood the part about blocking GitHub, but is not possible just to block it from accessing that specific repo?

by schnitzelstoat

5/12/2026 at 3:23:34 PM

In theory yes blocking specific repo is possible. In practice more difficult as the repo could be cloned under different names and you might have hundreds of training tasks that you need to configure this for. So it would be a lot of work to verify that you blocked them one by one.

by changoplatanero