AI leaderboards are no longer useful. It's time to switch to Pareto curves
1–10 of 17 posts
Re: AI leaderboards are no longer useful. It's time to switch to Pareto curves
#2Strategies to improve LLM accuracy:
Retry: We repeatedly invoke a model with the temperature set to zero, up to five times, if it fails the test cases provided with the problem description. Retrying makes sense because LLMs aren’t deterministic even at temperature zero.
Warming: This is the same as the retry strategy, but we gradually increase the temperature of the underlying model with each run, from 0 to 0.5. This increases the stochasticity of the model and, we hope, increases the likelihood that at least one of the retries will succeed.
Escalation: We start with a cheap model (Llama-3 8B) and escalate to more expensive models (GPT-3.5, Llama-3 70B, GPT-4) if we encounter a test case failure.
Re: AI leaderboards are no longer useful. It's time to switch to Pareto curves
#3But that's not quite as catchy. Great article
Re: AI leaderboards are no longer useful. It's time to switch to Pareto curves
#4Re: AI leaderboards are no longer useful. It's time to switch to Pareto curves
#5This is the most applicable part of the article: Strategies to improve LLM accuracy: Retry: We repeatedly invoke a model with the temperature set to zero, up to five times, if it fails the test cases provided with the problem description. Retrying makes sense because LLMs aren’t deterministic even at temperature zero. Warming: This is the same as the retry strategy, but we gradually increase the temperature of the un…
This is news to me. I'm trying to think where non-determinism would come in at temperature zero, but coming up with nothing. What am I missing?
Re: AI leaderboards are no longer useful. It's time to switch to Pareto curves
#6But, I'm just an old bot shilling for my product.
Re: AI leaderboards are no longer useful. It's time to switch to Pareto curves
#7This is the most applicable part of the article: Strategies to improve LLM accuracy: Retry: We repeatedly invoke a model with the temperature set to zero, up to five times, if it fails the test cases provided with the problem description. Retrying makes sense because LLMs aren’t deterministic even at temperature zero. Warming: This is the same as the retry strategy, but we gradually increase the temperature of the un…
Re: AI leaderboards are no longer useful. It's time to switch to Pareto curves
#8This is the most applicable part of the article: Strategies to improve LLM accuracy: Retry: We repeatedly invoke a model with the temperature set to zero, up to five times, if it fails the test cases provided with the problem description. Retrying makes sense because LLMs aren’t deterministic even at temperature zero. Warming: This is the same as the retry strategy, but we gradually increase the temperature of the un…
> Retrying makes sense because LLMs aren’t deterministic even at temperature zero. This is news to me. I'm trying to think where non-determinism would come in at temperature zero, but coming up with nothing. What am I missing?
Re: AI leaderboards are no longer useful. It's time to switch to Pareto curves
#9This is the most applicable part of the article: Strategies to improve LLM accuracy: Retry: We repeatedly invoke a model with the temperature set to zero, up to five times, if it fails the test cases provided with the problem description. Retrying makes sense because LLMs aren’t deterministic even at temperature zero. Warming: This is the same as the retry strategy, but we gradually increase the temperature of the un…
> Retrying makes sense because LLMs aren’t deterministic even at temperature zero. This is news to me. I'm trying to think where non-determinism would come in at temperature zero, but coming up with nothing. What am I missing?
I am not sure to what extent this effect has been quantified.
Re: AI leaderboards are no longer useful. It's time to switch to Pareto curves
#10Basically, none of these agentic / MoE / etc papers have actually compared their results to the naive baseline: since these are nondeterministic programs, Randomized Algortihms 101 tells you that if the probability of success is sufficiently high, you can improve performance simply by running the algorithm multiple times and taking the majority/plurality result.
So is MoE or agents actually more effective than doing it the dumb way? AI Snake Oil says "no." Truly bizarre that dozens of researchers didn't even ask! It made me feel like I was missing something.