Datasets:
id int64 1 20 | confidence_mean int64 5 95 | domain stringlengths 5 19 | question stringlengths 48 127 | answer_unit stringlengths 3 17 |
|---|---|---|---|---|
1 | 95 | Finance | What was NVIDIA's total revenue for fiscal 2026? | USD billions |
2 | 95 | Macroeconomics | What was the 12-month US CPI inflation rate in June 2026? | percent |
3 | 85 | Cloud Computing | What was Alphabet's Google Cloud revenue in the first quarter of 2026? | USD billions |
4 | 85 | Enterprise Software | What year-over-year percentage growth did Microsoft report for Azure and other cloud services in its fiscal 2026 third quarter? | percent |
5 | 75 | Markets | What was NVIDIA's official closing share price on July 24, 2026? | USD per share |
6 | 75 | Crypto | What was Bitcoin's UTC closing price on July 24, 2026? | USD |
7 | 65 | Labor | How many jobs will US nonfarm payrolls add in July 2026, rounded to the nearest 50,000? | thousands of jobs |
8 | 65 | Central Banking | What will the upper bound of the Federal Reserve target range be after its July 2026 meeting? | percent |
9 | 55 | Weather | What will Madrid's total precipitation be in October 2026, rounded to the nearest 20 millimeters? | millimeters |
10 | 55 | Baseball | How many games will be played in the 2026 World Series? | games |
11 | 45 | Basketball | How many regular-season wins will the 2027-28 NBA leader finish with, rounded to the nearest 5? | wins |
12 | 45 | American Football | How many total points will be scored in Super Bowl LXI, rounded to the nearest 10? | points |
13 | 35 | Olympics | How many gold medals will the leading country win at the 2028 Summer Olympics, rounded to the nearest 5? | gold medals |
14 | 35 | Box Office | What will the worldwide box-office gross of the highest-grossing 2028 film be, rounded to the nearest USD 250 million? | USD millions |
15 | 25 | Automotive | What percentage of new global passenger-car sales will be battery-electric in 2030, rounded to the nearest 5 percentage points? | percent |
16 | 25 | Aviation | How many commercial airplanes will Boeing deliver in 2030, rounded to the nearest 50? | aircraft |
17 | 15 | Public Health | What will global life expectancy at birth be in 2035, rounded to the nearest 0.25 year? | years |
18 | 15 | Space | How many people will travel beyond low Earth orbit during calendar year 2035? | people |
19 | 5 | Macroeconomics | What will US nominal GDP be in 2040, rounded to the nearest USD 100 billion? | USD trillions |
20 | 5 | Labor | What will the US unemployment rate be in December 2040, rounded to the nearest 0.1 percentage point? | percent |
Semantic Monte Carlo Benchmark
A synthetic benchmark of numeric research and forecasting questions for evaluating the
semantic-montecarlopipeline.
This release contains only benchmark inputs. Cached experiments, individual run artifacts, and aggregate results are intentionally excluded.
At a glance
| Questions | Language | Splits | License |
|---|---|---|---|
| 300 | English | Validation and test | CC0 1.0 |
Dataset structure
The dataset has no training split:
| Split | Source file | Rows | Intended use |
|---|---|---|---|
validation |
eval.csv |
20 | Parameter selection and development |
test |
test.csv |
280 | Final benchmark evaluation |
Both splits are balanced across the ten confidence_mean levels. Validation
contains two questions per level; test contains 28.
Fields
| Field | Type | Description |
|---|---|---|
id |
integer | Identifier, unique within each split |
confidence_mean |
integer | Target expected-confidence level from 5 to 95, expressed as a percentage |
domain |
string | Topic category |
question |
string | Numeric question to research or forecast |
answer_unit |
string | Required unit for the numeric estimate |
confidence_mean is the target used by the current benchmark score. It is not
a model prediction, an observed frequency, or a guarantee that the answer is
correct. The original assignment method was not recorded and remains a
provenance limitation.
Data creation and provenance
The questions were generated with GPT-5.6 Sol and organized into validation and test splits by project contributors. The generation prompt and human-review procedure were not retained in this repository. The question set was first committed in July 2026.
The dataset contains no source documents or personal user records. Its questions cover public topics such as economics, companies, climate, sports, and long-range forecasts.
Benchmark protocol
The reference implementation is
scripts/benchmark.py.
For each test question, it:
- Runs the pipeline with the question and
answer_unit. - Converts the bootstrap-mean distribution into estimated confidence using
norm_var_comp. - Converts
confidence_meanto[0, 1]by dividing it by 100. - Reports mean squared error between expected and estimated confidence.
The score measures alignment with the benchmark's confidence targets. It does not measure numeric answer accuracy because resolved numeric answers are not included.
Comparable benchmark reports should record the dataset revision, code commit, run timestamp, model identifier, prompt and search configuration, paraphrase count, bootstrap resamples, random seed, token and search usage, failures, and retries.
Usage
from datasets import load_dataset
dataset = load_dataset("cynosural/semantic-montecarlo-benchmark")
validation = dataset["validation"]
test = dataset["test"]
Use validation while choosing parameters. Reserve test for the final
reported evaluation.
Intended use
- Evaluate confidence distributions produced by web-enabled numeric research pipelines.
- Compare configurations under a fixed dataset revision and execution protocol.
- Study how question horizon and domain relate to distribution concentration and no-answer behavior.
This is not a factual answer key, a calibrated probability dataset, or training data for optimizing against the published test questions.
Limitations
- LLM-generated questions may contain ambiguities, incorrect premises, or generator biases.
- The provenance of the
confidence_meanassignments is incomplete. - Many questions are time-dependent or concern future events; available web evidence and pipeline outputs change with the execution date.
- The test questions are public. Repeated tuning against them invalidates claims of held-out evaluation and can cause benchmark contamination.
- Confidence-target MSE does not establish factual accuracy.
Citation
@dataset{cynosural_semantic_montecarlo_2026,
title = {Semantic Monte Carlo Benchmark},
author = {{Cynosural AI contributors}},
year = {2026},
url = {https://huggingface.co/datasets/cynosural/semantic-montecarlo-benchmark}
}
License
To the extent possible under law, the project contributors have dedicated this benchmark dataset to the public domain under CC0 1.0 Universal. It may be copied, modified, and redistributed for any purpose without conditions.
- Downloads last month
- 20