madhavan113 commited on
Commit
e0db951
·
verified ·
1 Parent(s): 7c43d6a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +117 -7
README.md CHANGED
@@ -1,16 +1,126 @@
1
  ---
2
  license: cc-by-4.0
3
  task_categories:
4
- - text-generation
5
- - question-answering
6
  language:
7
- - en
8
  tags:
9
- - finance
10
- - legal
11
- - medical
12
- - consulting
 
 
13
  pretty_name: APEX-v1-extended
 
 
 
 
 
 
 
14
  ---
15
 
16
  # APEX-v1-extended
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
  task_categories:
4
+ - text-generation
5
+ - question-answering
6
  language:
7
+ - en
8
  tags:
9
+ - finance
10
+ - legal
11
+ - medical
12
+ - consulting
13
+ - benchmarking
14
+ - rubric-grading
15
  pretty_name: APEX-v1-extended
16
+ size_categories:
17
+ - n<1K
18
+ configs:
19
+ - config_name: default
20
+ data_files:
21
+ - split: train
22
+ path: data/**
23
  ---
24
 
25
  # APEX-v1-extended
26
+
27
+ The AI Productivity Index (APEX) is a benchmark from [Mercor](https://www.mercor.com/apex/) for assessing whether frontier models are capable of performing economically valuable tasks across four jobs: **investment banking associate**, **management consultant**, **big law associate**, and **primary care physician (MD)**.
28
+
29
+ APEX-v1-extended doubles the heldout evaluation set from n=200 to n=400, with increased complexity and variety. On average, tasks take over two-and-a-half hours for seasoned professionals to complete.
30
+
31
+ - **Tasks:** 400 heldout (100 per job) + 100 open-source dev set
32
+ - **Domains:** Investment banking, Management consulting, Law, Medicine
33
+ - **Grading:** Rubric-based, using a Judge LM (Gemini 2.5 Pro, Thinking=On)
34
+ - **Runs per model:** 8
35
+ - **License:** CC-BY 4.0
36
+ - **Intended use:** APEX-v1-extended is intended exclusively for model evaluation. Any use of this dataset for training, fine-tuning, or parameter fitting is forbidden. Crawling or scraping the dataset is also forbidden.
37
+
38
+ ## Dataset overview
39
+
40
+ Each case consists of a prompt, source documents, and a grading rubric with prompt-specific quality criteria. Cases were created by 76 experts with a mean of 7.25 years of professional experience, sourced through the Mercor platform.
41
+
42
+ | Domain | # Cases (heldout) | Expert backgrounds |
43
+ |---|---|---|
44
+ | Investment banking | 100 | Goldman Sachs, Evercore, JPMorgan |
45
+ | Management consulting | 100 | McKinsey, BCG, Bain |
46
+ | Law | 100 | Latham & Watkins, Skadden, Cravath |
47
+ | Medicine | 100 | Leading medical institutions |
48
+
49
+ ## Evaluation
50
+
51
+ APEX uses **rubric-based grading**:
52
+
53
+ - Each rubric contains multiple criteria (binary: Pass / Fail).
54
+ - A single Judge LM (Gemini 2.5 Pro, Thinking=On) grades each criterion independently.
55
+ - The overall score for each response is the mean percentage of criteria met.
56
+ - Each model is evaluated 8 times per task.
57
+
58
+ Changes from APEX-v1.0 to v1-extended include: (1) switching from a panel of LM judges to a single LM, (2) passing the prompt and source documents to the judge alongside the rubric, and (3) doubling the heldout set from n=200 to n=400.
59
+
60
+ ## Leaderboard
61
+
62
+ You can view the latest leaderboard with live updates on the [APEX Leaderboard](https://www.mercor.com/apex/apex-v1-leaderboard/).
63
+
64
+ The leaderboard is based on the hidden heldout set of 400 tasks. For each task, responses are collected 8 times, graded using the Judge LM, and the mean value is reported.
65
+
66
+ ## How to load the dataset
67
+
68
+ ```python
69
+ from datasets import load_dataset
70
+
71
+ ds = load_dataset("mercor/APEX-v1-extended")
72
+ print(ds)
73
+ print(ds["train"][0].keys())
74
+ ```
75
+
76
+ ## Eval harness
77
+
78
+ Our evaluation harness is available open-source on GitHub: [Mercor-Intelligence/apex-evals](https://github.com/Mercor-Intelligence/apex-evals/tree/main/apex-evals-v1-extended)
79
+
80
+ ```bash
81
+ git clone https://github.com/Mercor-Intelligence/apex-evals
82
+ cd apex-evals-v1-extended
83
+ python3 -m venv venv && source venv/bin/activate
84
+ pip install -r requirements.txt && pip install -e .
85
+ cp example.env .env # fill in your API keys
86
+ python examples/run_with_hf.py --input_dir /path/to/APEX-v1-extended --output apex_results.csv --start_index 0 --limit 5
87
+ ```
88
+
89
+ ## Citation
90
+
91
+ ```bibtex
92
+ @misc{vidgen2025apex,
93
+ title = {The AI Productivity Index: APEX-v1-extended},
94
+ author = {Vidgen, Bertie and Fennelly, Abby and Pinnix, Evan and Bencheck, Julien and Khan, Daniyal and Richards, Zach and Bridges, Austin and Huang, Calix and Hunsberger, Ben and Robinson, Isaac and Datta, Akul and Mahapatra, Chirag and Barton, Dominic and Sunstein, Cass R. and Topol, Eric and Foody, Brendan and Nitski, Osvald},
95
+ year = {2025},
96
+ howpublished = {arXiv},
97
+ url = {https://arxiv.org/abs/2509.25721}
98
+ }
99
+ ```
100
+
101
+ ## Related benchmarks
102
+
103
+ - [APEX-Agents](https://huggingface.co/datasets/mercor/apex-agents) — Long-horizon agentic tasks in professional services
104
+ - [ACE](https://huggingface.co/datasets/mercor/ACE) — AI Consumer Index for everyday consumer tasks
105
+ - [APEX-SWE](https://huggingface.co/datasets/mercor/APEX-SWE) — Software engineering tasks (integration + observability)
106
+
107
+ ## Contact us
108
+
109
+ [apex@mercor.com](mailto:apex@mercor.com)
110
+
111
+ ## Legal disclaimer
112
+
113
+ This material is provided for research, educational, and informational purposes only. It consists of hypothetical, simulated financial and legal and regulatory analyses and illustrative scenarios. No representation is made that any scenario described herein is likely to occur, is being contemplated by any person, or reflects an actual proposed or pending transaction or any legal, regulatory, or compliance risk.
114
+
115
+ This material does not constitute (and should not be construed as) financial, investment, legal, tax, accounting, or other professional advice, and is not intended to form the basis of any investment decision or any contract.
116
+
117
+ To the maximum extent permitted by applicable law, Mercor disclaims any liability for any direct or indirect losses or damages arising from or related to the use of (or reliance on) this material, including without limitation any loss of profits, loss of business, loss of goodwill, or consequential, incidental, special, punitive, or exemplary damages, even if advised of the possibility of such damages. Nothing in this disclaimer limits or excludes liability that cannot be limited or excluded under applicable law.
118
+
119
+ ## Robots Exclusion Statement
120
+
121
+ User-Agent: *
122
+ Disallow: /
123
+
124
+ We ask that:
125
+ - You do *not* crawl, scrape, index, or download this dataset programmatically.
126
+ - You do *not* use this dataset for training models or any automated processing without express permission from the dataset owner.