> ## Documentation Index
> Fetch the complete documentation index at: https://narev.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# GPT-3.5 MMLU Score: why it beats GPT-5 at 3% of the Cost

> Despite its low MMLU score, GPT-3.5 outperformed top 2025 models like GPT-5 and Claude Opus on a real task, costing USD 823 vs USD 30,390 per 1M requests.

<Frame>
  <img src="https://mintcdn.com/narev/fpyXaBUjJEyahZQ-/images/blog/gpt35-beats-gpt5/hero.webp?fit=max&auto=format&n=fpyXaBUjJEyahZQ-&q=85&s=4c3f5a87dc8c616d3b2160d18ac305f6" alt="GPT-3.5 Turbo outperforming GPT-5, Gemini 2.5 Pro, and Claude Opus 4.1 on a real-world task" width="1508" height="924" data-path="images/blog/gpt35-beats-gpt5/hero.webp" />
</Frame>

<Warning>
  **In summary:** This test evaluated the top 3 and bottom 2 models from MMLU
  Pro rankings on a real task. The "worst" model (GPT-3.5 Turbo from 2023)
  performed just as well as the "top" model—while costing 97% less ($823 vs
      $30,390 per 1M requests). Focus on actual API costs and real-world accuracy
  over raw MMLU scores.
</Warning>

MMLU Pro is a comprehensive benchmark developed in 2024 to test the knowledge of LLMs. Claude Opus 4.1 holds the top place with 87% (according to [Open Benchmarks](https://www.kaggle.com/benchmarks/open-benchmarks/mmlu-pro)).

But how would this model compare on a repeatable task instead of an academic questionnaire like MMLU Pro?

## The Task: Extract the name of the author from a news article

Simple, right? Not quite. The author's name hides in the HTML—usually in a photo credit or caption. The model needs to actually read and understand the page structure.

### Setup

* **Get 100 articles** from [NewsAPI](https://newsapi.org) from October 13, 2025. Keywords: 'Sydney', 'Australia', 'Melbourne'. Generic enough. **The data included the author name and link to the original article.**
* **Scrape raw HTML** of the 100 articles
* **Clean HTML** using [trafilatura](https://trafilatura.readthedocs.io/en/latest/), which extracted just the main article content from the webpage while removing all the navigation, ads, and other clutter.
* **Sanity check the HTML** and filter out all the articles that don't have an author (despite NewsAPI claiming otherwise)
* **Ask models** to identify the article author (using identical prompt)
* Evaluate **the exact response** (so rambling gets no point)

The system prompt was dead simple:

```plaintext theme={null}
Extract the author(s) from this HTML of a news article.

Return format:
Single author: first_name last_name
Multiple authors: first_name last_name and first_name last_name

Examples:
Jane Smith
John Doe and Mary Johnson
```

**Models tested:**

* **Top 3 from MMLU:** Claude Opus 4.1, Gemini 2.5 Pro, GPT-5
* **Bottom 2 from MMLU:** Ministral 8B, GPT-3.5 Turbo

## The first result was... surprising

| Model                            | MMLU-Pro Score (Open Benchmarks) | Our Test Accuracy | Avg Response Time | Cost per 1M requests |
| -------------------------------- | -------------------------------- | ----------------- | ----------------- | -------------------- |
| **GPT-3.5 Turbo**                | 46.9% (bottom tier)              | **61.5%**         | 489.769ms         | \$823.87             |
| **GPT-5**                        | 87.1% (2nd place)                | 59.6%             | 13,305.827ms      | \$8,099.45           |
| **Gemini 2.5 Pro Preview 06-05** | 86.9% (3rd place)                | 55.8%             | 15,612.25ms       | \$15,799.09          |
| **Ministral 8B**                 | 42.8% (bottom tier)              | 40.4%             | 696.615ms         | \$167.47             |
| **Claude Opus 4.1**              | 87.9% (1st place)                | 34.6%             | 3,972.904ms       | \$30,390.87          |

The 2023 model beat the 2025 flagship. By a lot. While costing 3% of the cost ($823 vs $30,390 per 1M requests).

## Here is what happened

On a single example from [this ABC News article on Tasmanian Saltmarsh restoration](https://www.abc.net.au/news/2025-10-13/tasmania-saltmarsh-wetland-restoration-on-merino-sheep-farm/105883488),

Claude Opus 4.1 and Gemini 2.5 Pro responded:

> "Based on the HTML content, I cannot identify a specific author..."

Meanwhile, GPT-3.5 Turbo just said:

> "Madeleine Rojahn"

(Which was correct.)

**The irony:** Claude often *did* identify the correct author—it just buried the answer in verbose explanations about HTML structure, metadata analysis, and confidence levels. The system prompt asked for a simple format. Claude gave a dissertation. GPT-3.5 just followed instructions.

The "smarter" models overthought it. The older model just did the job.

## This is true

The test was rerun 3 times, same setup same models just repeated.

The initial 61.5% for GPT-3.5 was on the higher end of the variance.

The next three tests showed GPT-3.5 scoring 50.0%, 51.9%, and 53.8%—averaging \~54% across all runs.

<img src="https://mintcdn.com/narev/fpyXaBUjJEyahZQ-/images/blog/gpt35-beats-gpt5/hero.webp?fit=max&auto=format&n=fpyXaBUjJEyahZQ-&q=85&s=4c3f5a87dc8c616d3b2160d18ac305f6" alt="Comparison showing GPT-3.5 Turbo outperforming flagship models like GPT-5, Gemini 2.5 Pro, and Claude Opus 4.1 on a real-world task, despite ranking lower on MMLU Pro benchmarks" width="1508" height="924" data-path="images/blog/gpt35-beats-gpt5/hero.webp" />

Here is what stayed consistent:

* **GPT-3.5 remained comparable to GPT-5 and Gemini 2.5 Pro.** Despite being two years older and scoring \~35 points lower on MMLU Pro.

* **GPT-3.5 consistently beat Claude Opus 4.1.** Every single time. The MMLU Pro champion couldn't compete with the "bottom tier" model.

* **Ministral 8B performed comparably to Claude Opus 4.1.** Despite a 40-point gap on MMLU Pro (47% vs 87.9%), both "bottom tier" models scored within 6 percentage points on this task—suggesting the benchmark massively overestimated the performance difference.

## Takeaway: leaderboards like MMLU don't give a full picture

MMLU tests academic knowledge and reasoning. Our task tested practical instruction-following on messy real-world data.

Completely different skill sets. And the benchmark didn't predict which model would win.

**Your use case isn't MMLU. Your use case needs its own leaderboard.**

***

<Note>
  Build your own benchmark in 5 minutes → [Start testing](https://www.narev.ai/login)
</Note>
