Dataset Viewer
Auto-converted to Parquet Duplicate
The dataset viewer is not available for this split.
The info cannot be fetched for the config 'default' of the dataset.
Error code:   InfoError
Exception:    HfHubHTTPError
Message:      (Request ID: Root=1-6a6729e2-0c2bfceb7dd0166a4d093286;9dcf8da3-2e4e-4587-b363-42e73f99e7df)

429 Too Many Requests: you have reached your 'api' rate limit.
Retry after 158 seconds (0/500 requests remaining in current 300s window).
Url: https://huggingface.co/api/datasets/JacobPEvans/mlx-benchmarks/revision/d6b277fbca4a67d2a5d8b6447a0969e35076931f.
We had to rate limit your IP (52.1.96.215). To continue using our service, create a HF account or login to your existing account, and make sure you pass a HF_TOKEN if you're using the API.
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/split/first_rows.py", line 227, in compute_first_rows_from_streaming_response
                  info = get_dataset_config_info(path=dataset, config_name=config, token=hf_token)
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 268, in get_dataset_config_info
                  builder = load_dataset_builder(
                      path,
                  ...<6 lines>...
                      **config_kwargs,
                  )
                File "/src/services/worker/src/worker/utils.py", line 390, in safe_load_dataset_builder
                  dataset_module = dataset_module_factory(
                      repo_dir,
                      revision=revision,
                      download_config=download_config,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 1217, in dataset_module_factory
                  raise e1 from None
                File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 1192, in dataset_module_factory
                  ).get_module()
                    ~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 608, in get_module
                  standalone_yaml_path = cached_path(
                      hf_dataset_url(self.name, config.REPOYAML_FILENAME, revision=self.commit_hash),
                      download_config=download_config,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/file_utils.py", line 180, in cached_path
                  ).resolve_path(url_or_filename)
                    ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/hf_file_system.py", line 339, in resolve_path
                  repo_and_revision_exist, err = self._repo_and_revision_exist(parsed.type, parsed.id, revision)
                                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/hf_file_system.py", line 252, in _repo_and_revision_exist
                  self._api.repo_info(
                  ~~~~~~~~~~~~~~~~~~~^
                      repo_id, revision=revision, repo_type=repo_type, timeout=constants.HF_HUB_ETAG_TIMEOUT
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/utils/_validators.py", line 88, in _inner_fn
                  return fn(*args, **kwargs)
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/hf_api.py", line 3598, in repo_info
                  return method(
                      repo_id,
                  ...<4 lines>...
                      files_metadata=files_metadata,
                  )
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/utils/_validators.py", line 88, in _inner_fn
                  return fn(*args, **kwargs)
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/hf_api.py", line 3360, in dataset_info
                  hf_raise_for_status(r)
                  ~~~~~~~~~~~~~~~~~~~^^^
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/utils/_http.py", line 868, in hf_raise_for_status
                  raise _format(HfHubHTTPError, message, response) from e
              huggingface_hub.errors.HfHubHTTPError: (Request ID: Root=1-6a6729e2-0c2bfceb7dd0166a4d093286;9dcf8da3-2e4e-4587-b363-42e73f99e7df)
              
              429 Too Many Requests: you have reached your 'api' rate limit.
              Retry after 158 seconds (0/500 requests remaining in current 300s window).
              Url: https://huggingface.co/api/datasets/JacobPEvans/mlx-benchmarks/revision/d6b277fbca4a67d2a5d8b6447a0969e35076931f.
              We had to rate limit your IP (52.1.96.215). To continue using our service, create a HF account or login to your existing account, and make sure you pass a HF_TOKEN if you're using the API.

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

MLX Benchmarks

Structured benchmark results for MLX-quantized and other locally-hosted LLMs on Apple Silicon. Covers throughput, time-to-first-token, tool-calling, code generation, reasoning, knowledge, and math suites.

Results are produced by a sweep harness that wires upstream evaluation tools against a local vllm-mlx inference server:

All data here is generated on Apple Silicon hardware (MINISFORUM MS-A2 / M4 Max class), stored in flat columnar Parquet for easy querying, and appended to via unique-filename commits so historical shards are never overwritten.

Quickstart

from datasets import load_dataset

ds = load_dataset("JacobPEvans/mlx-benchmarks")
print(ds)

# Example: average throughput per model
import pandas as pd
df = ds["train"].to_pandas()
throughput_rows = df[df.suite == "throughput"]
print(
    throughput_rows.groupby("model")["metric_value"]
    .mean()
    .sort_values(ascending=False)
)

Raw Parquet fetch (token-optimal for agents):

curl -sSL \
  https://huggingface.co/datasets/JacobPEvans/mlx-benchmarks/resolve/main/data/train-00000-of-00001.parquet \
  -o run.parquet

Schema

Each input benchmark run produces a JSON envelope (see schema.json in this repo for the authoritative v1 spec). The envelope is exploded row-wise into flat scalar columns — one row per entry in the envelope's results[] array. Skipped runs become a single sentinel row with null metric columns and skipped=true. This mirrors the columnar layout used by the Open LLM Leaderboard contents dataset.

Column Type Notes
suite string One of: throughput, ttft, tool-calling, code-accuracy, framework-eval, capability-comparison, coding, reasoning, knowledge, evalplus, math-hard
model string Full model identifier
git_sha string Commit SHA of the generator at run time
timestamp string ISO-8601 UTC start of the run
trigger string schedule, pr, workflow_dispatch, or local
schema_version string Envelope schema version (currently "1")
pr_number int64 PR number if triggered by a pull request, else null
skipped bool True for sentinel rows where the suite was skipped
os string Operating system at run time
chip string CPU/chip identifier
memory_gb int64 Total system RAM
vllm_mlx_version string Backend version if captured
runner string Runner label or local
metric_name string Individual test/measurement name
metric_metric string Metric family (e.g. throughput, latency, score)
metric_value float64 Numeric value
metric_unit string Unit (tok/s, seconds, ratio, ...)
tags_json string JSON-serialized tag dict (per-suite custom metadata)
errors_json string JSON-serialized list of non-fatal errors from the run

Nested fields from the envelope (tags, errors) are preserved as JSON-serialized strings so no information is lost — rehydrate with json.loads(row["tags_json"]).

Update cadence

New rows are appended on every sweep via a unique-filename commit pattern (data/run-{timestamp}-{sha}-{suite}-{model}.parquet). Historical shards are never overwritten. load_dataset() concatenates all data/*.parquet files into a single train split at load time.

License

Apache 2.0 — same as the underlying upstream evaluation tools.

Downloads last month
311

Space using JacobPEvans/mlx-benchmarks 1