ML.ENERGY Benchmark data toolkit
Project description
The ML.ENERGY Data Toolkit
A Python toolkit for ML.ENERGY datasets: loading raw results, filtering and analyzing runs, fitting models, and building data packages.
We currently have The ML.ENERGY Benchmark v3.0 dataset, which includes LLM and diffusion inference runs on NVIDIA H100 and B200 GPUs.
Actual data are stored in Hugging Face Hub: ml-energy/benchmark-v3.
This repository contains the toolkit code, not the data itself.
What the toolkit does
- Load and filter benchmark runs with typed, immutable collection classes (
LLMRuns,DiffusionRuns). - Extract bulk data (power timelines, ITL samples, output lengths) as DataFrames.
- Fit models: logistic power/latency curves, ITL latency distributions.
- Build data packages for publishing to Hugging Face Hub.
Installation
pip install mlenergy-data
Dataset access
The benchmark dataset (ml-energy/benchmark-v3) is gated on Hugging Face Hub.
Before using the toolkit to load data from HF, you need to:
- Visit the dataset page and request access (granted automatically).
- Set the
HF_TOKENenvironment variable to a Hugging Face access token.
Quick example
from mlenergy.data.records import LLMRuns
runs = LLMRuns.from_hf()
# Find the minimum-energy model on GPQA
best = min(runs.task("gpqa"), key=lambda r: r.energy_per_token_joules)
print(f"{best.nickname}: {best.energy_per_token_joules:.3f} J/tok on {best.gpu_model}")
energies = [r.energy_per_token_joules for r in runs]
Filter, group, and compare across GPU generations and model architectures:
# Compare GPU generations: best energy efficiency per model on GPQA
for gpu, group in runs.task("gpqa").group_by("gpu_model").items():
best = min(group, key=lambda r: r.energy_per_token_joules)
print(f"{gpu}: {best.nickname} @ {best.energy_per_token_joules:.3f} J/tok, "
f"{best.output_throughput_tokens_per_sec:.0f} tok/s")
# MoE, Dense, Hybrid: who's more energy-efficient?
for arch, group in runs.task("gpqa").gpu_model("B200").group_by("architecture").items():
best = min(group, key=lambda r: r.energy_per_token_joules)
print(f"{arch}: {best.nickname} @ {best.energy_per_token_joules:.3f} J/tok")
Who uses it
- The ML.ENERGY Leaderboard v3.0: Benchmark results are loaded and compiled into the leaderboard web app data format.
- OpenG2G: Datacenter-grid coordination simulation framework; loads benchmark data and fits models.
- The ML.ENERGY blog: Analysis scripts for blog posts.
Agent skill
skills/mlenergy-data/ is a portable Agent Skill that teaches AI coding agents (Claude Code, Cursor, Goose, OpenCode, Gemini CLI, GitHub Copilot, etc.) to answer natural-language questions about the benchmark using this toolkit.
For Claude Code, install via the bundled plugin marketplace:
# Inside Claude Code
/plugin marketplace add ml-energy/data
/plugin install skill@ml-energy-data
Gemini CLI also supports gemini skills install https://github.com/ml-energy/data --path skills.
For other tools, you can download the skills/ directory and place it in the appropriate skills directory.
Documentation
See the full documentation site for:
- Usage guide: progressive walkthrough from loading data to fitting models.
- API reference: auto-generated from docstrings.
Citation
@inproceedings{mlenergy-neuripsdb25,
title={The {ML.ENERGY Benchmark}: Toward Automated Inference Energy Measurement and Optimization},
author={Jae-Won Chung and Jeff J. Ma and Ruofan Wu and Jiachen Liu and Oh Jun Kweon and Yuxuan Xia and Zhiyu Wu and Mosharaf Chowdhury},
year={2025},
booktitle={NeurIPS Datasets and Benchmarks},
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mlenergy_data-0.4.0.tar.gz.
File metadata
- Download URL: mlenergy_data-0.4.0.tar.gz
- Upload date:
- Size: 37.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94119d4884d19348af340ecb8d36e75270e37b72ea1d606e9976aa6a3293ce4c
|
|
| MD5 |
6ae36e9089851b1dbf684731194c35d0
|
|
| BLAKE2b-256 |
37d61958e8445023dfdc748018af1bf349d4f8a3c09d1c61316accc8fdacc12d
|
File details
Details for the file mlenergy_data-0.4.0-py3-none-any.whl.
File metadata
- Download URL: mlenergy_data-0.4.0-py3-none-any.whl
- Upload date:
- Size: 28.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c793a9b625091ffcd2c6a071458e3bdf76d2461913868d2d8a48bb45907a71f
|
|
| MD5 |
bf8be2839a69129e6e063c0db39bf828
|
|
| BLAKE2b-256 |
dad84396dcb42dbfc9018f4c397df9e3304c7cbbc62f67afd6f6fe956cc1f889
|