HLE Benchmark: Google Gemini Scores & The Blocking Badgerbear
Written by Matteo Giardino - CTO and AI consultant.
Are you looking for the latest Google Gemini scores on the HLE benchmark and wondering what the "Blocking Badgerbear" is? Humanity's Last Exam (HLE) is a graduate-level challenge designed to be the final academic test for AI, and currently, no model can reliably solve the complex spatial reasoning of the Blocking Badgerbear question. Google Gemini 3.1 Pro leads the leaderboard, but even it struggles.
AI benchmarks are saturating. Models now score over 90% on tests like MMLU, making them useless for measuring true frontier capabilities. In this post, I break down what HLE is, analyze the latest scores from Google Gemini 3.1 and GPT-5.4, and explain why calibration is the real bottleneck. For a broader comparison, read my guide on Gemini 3.1 Pro vs Opus 4.6 vs GPT 5.3.
What is Humanity's Last Exam (HLE)?
Humanity's Last Exam is a multi-modal, closed-ended benchmark created by 1,000 subject matter experts. Unlike previous tests, HLE targets the frontier of human understanding in math, physics, biology, and medicine. You can read more about the methodology on the Center for AI Safety website.
The dataset consists of 2,500 questions so difficult that even the most advanced LLMs struggle to break the 50% accuracy barrier. It is not about recalling facts; it is about deep reasoning, spatial logic, and the ability to interpret complex multi-modal diagrams.
Beyond MMLU: Why HLE Matters in 2026
Why is this challenge fundamental? Because we have reached "benchmark saturation." When every model hits 95% on MMLU, the signal is lost. HLE sets the bar at the post-graduate level, providing a clean metric for the reasoning depth of a frontier AI system.
Specifically, it combats training data contamination by using expert-vetted questions that aren't easily searchable. For a CTO or an AI engineer, it is the best way to verify if a model actually "understands" complex technical domains rather than just parroting memorized data.
Need help with AI integration?
Get in touch for a consultation on implementing AI tools and automations in your business.
Loading the HLE Benchmark Dataset
If you are a developer looking to evaluate your own fine-tunes against the public portion of the HLE benchmark, you can easily load the dataset using the Hugging Face datasets library.
from datasets import load_dataset
# Load the public split of Humanity's Last Exam
dataset = load_dataset("cais/hle", split="test")
print(f"Total evaluation questions: {len(dataset)}")
# Example of inspecting a question
sample_question = dataset[0]
print("Question:", sample_question["question"])
print("Subject:", sample_question["subject"])This snippet allows you to pull the exact graduate-level logic problems to test against local models before trusting them in production.
Latest Scores: Google Gemini and the Leaderboard
The current leaderboard shows a fascinating shift in the AI landscape. As of mid-2026, here are the top performers on the HLE (Humanity's Last Exam):
- Gemini 3.1 Pro Preview (Thinking High): 46.44%
- GPT-5.4 Pro (2026-03-05): 44.32%
- Muse Spark: 40.56%
- Claude Opus 4.7: 36.20%
What is interesting here isn't just the ranking, but the gap. We are seeing a plateau. Even with "High Thinking" modes enabled, models are struggling to move past the 50% mark. This suggests that we are hitting a fundamental bottleneck in how LLMs handle specialized, world-class scientific problems. Google Gemini's score of 46.44% is currently the highest, largely thanks to its native multi-modal architecture which handles the complex visual diagrams better than text-first models.
The Overconfidence Problem: Calibration Error
The most striking metric in the HLE results isn't accuracy - it is Calibration Error. A well-calibrated model knows when it is likely to be wrong. If a model says it is 90% confident, it should be right 90% of the time.
In HLE, we see systematic overconfidence. Many models exhibit calibration errors higher than 50%. They provide "confidently wrong" answers to graduate-level physics or math problems. For enterprise applications, this is a massive red flag. It is often better to have a model that says "I don't know" than one that hallucinates a plausible-sounding but incorrect solution. This expert-level bottleneck is exactly what the hle benchmark was built to identify.
How to Use HLE for Model Selection
When you are choosing a model for complex tasks like autonomous coding or server management, don't just look at the raw accuracy. You might want to explore how to run models locally or check out free API options to test these capabilities yourself.
- Check the Calibration: Look for models with lower calibration errors. They are more reliable for automation where human oversight is minimal.
- Multi-modal Performance: If your workflow involves charts or diagrams, HLE is the best way to test if a model can actually "see" the logic in an image.
- Test with OpenClaw: I always recommend running these models through the OpenClaw framework to see how they handle real-world tools and long-running tasks beyond static benchmarks.
FAQ
What is the "Blocking Badgerbear" in HLE?
The "Blocking Badgerbear" is an infamous question within the Humanity's Last Exam dataset. It has become a symbol of the benchmark's difficulty because it combines obscure domain knowledge with complex multi-modal spatial reasoning. To date, almost no frontier LLM has been able to solve the blocking badgerbear problem consistently without hallucinating.
What is the passing score for the hle benchmark?
There is no formal "passing" score for AI in HLE. However, current frontier models are all scoring below 50%, highlighting the extreme difficulty of the benchmark designed for subject matter experts.
How does the hle benchmark compare to MMLU?
MMLU is essentially "undergraduate" level and is now saturated (models score >90%). HLE is "graduate" level and multi-modal, designed to be the final academic benchmark of its kind, offering a true test for 2026's top models.
Can I run the hle benchmark locally?
The public set is available for the research community on Hugging Face, but you will need significant compute and proper evaluation scripts to test models locally. The private hold-out set remains hidden to prevent data contamination.
Written by Matteo Giardino, CTO and founder. My projects.
