anonymity11 commited on
Commit
76ea5d9
·
verified ·
1 Parent(s): e3ae333

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +61 -11
README.md CHANGED
@@ -1,43 +1,93 @@
1
  ---
2
- license: other
3
  task_categories:
4
  - table-question-answering
 
 
 
5
  tags:
6
  - spreadsheets
7
  - xlsx
8
  - formula-reasoning
 
9
  - benchmark
10
  - agentic-evaluation
 
11
  pretty_name: FormulaCascade Benchmark
12
  size_categories:
13
  - 10K<n<100K
 
 
 
 
 
14
  ---
15
 
16
  # FormulaCascade Benchmark
17
 
18
- This repository hosts an anonymous release of FormulaCascade, a benchmark for long-horizon spreadsheet formula reasoning in real `.xlsx` workbooks.
19
 
20
- ## Current Release
21
 
22
- This initial upload contains the standard 200-task evaluation split:
 
 
 
 
 
 
 
23
 
24
  - `FormulaCascade_Benchmark_eval_200.tar.gz`: compressed eval-200 split.
 
 
 
25
  - `SHA256SUMS.txt`: checksum for release integrity verification.
26
 
27
- To unpack:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  ```bash
30
  tar -xzf FormulaCascade_Benchmark_eval_200.tar.gz
31
  ```
32
 
33
- The extracted folder is:
34
 
35
- ```text
36
- FormulaCascade_Benchmark_eval_200/
37
- ```
 
38
 
39
  ## Intended Use
40
 
41
- FormulaCascade evaluates agents that must solve masked spreadsheet tasks by localizing relevant workbook context, tracing formula dependencies, reconstructing latent workbook logic, and filling hidden targets with executable values or formulas.
 
 
 
 
 
 
 
 
42
 
43
- The full 10K+ benchmark release and additional metadata will be made available through this repository.
 
1
  ---
2
+ license: cc-by-nc-4.0
3
  task_categories:
4
  - table-question-answering
5
+ language:
6
+ - en
7
+ - zh
8
  tags:
9
  - spreadsheets
10
  - xlsx
11
  - formula-reasoning
12
+ - formula-dependency
13
  - benchmark
14
  - agentic-evaluation
15
+ - executable-evaluation
16
  pretty_name: FormulaCascade Benchmark
17
  size_categories:
18
  - 10K<n<100K
19
+ configs:
20
+ - config_name: eval_200_manifest
21
+ data_files:
22
+ - split: test
23
+ path: data/eval_200_manifest.parquet
24
  ---
25
 
26
  # FormulaCascade Benchmark
27
 
28
+ FormulaCascade is a benchmark for long-horizon spreadsheet formula-dependency reasoning in real executable `.xlsx` workbooks. It evaluates whether agents can recover hidden workbook logic by localizing relevant regions, tracing formula dependencies, reconstructing latent formulas or values, and filling masked target cells.
29
 
30
+ ## Current Review Release
31
 
32
+ This repository currently hosts the standard **eval-200** split used for reproducible model comparison. The split is a stratified subset of the full **11,171-task** FormulaCascade benchmark:
33
+
34
+ - **200 tasks total**: 50 tasks per tier.
35
+ - **Balanced sheet topology**: 25 single-sheet and 25 cross-sheet tasks per tier.
36
+ - **Four quality-difficulty tiers**: `T1_FRONTIER`, `T2_HARD`, `T3_MEDIUM`, and `T4_STANDARD`.
37
+ - **Executable artifacts**: solver-visible masked workbooks plus evaluator-only contracts for hidden targets, formulas, cached values, dependency layers, and provenance.
38
+
39
+ Uploaded files include:
40
 
41
  - `FormulaCascade_Benchmark_eval_200.tar.gz`: compressed eval-200 split.
42
+ - `FormulaCascade_Benchmark_eval_200/`: expanded eval-200 directory for direct browsing.
43
+ - `data/eval_200_manifest.parquet`: lightweight tabular manifest for the Hugging Face Dataset Viewer.
44
+ - `data/eval_200_manifest.csv` and `data/eval_200_manifest.jsonl`: equivalent manifest exports for convenience.
45
  - `SHA256SUMS.txt`: checksum for release integrity verification.
46
 
47
+ The full benchmark contains **11,171 bilingual tasks** across finance, sales, operations, engineering, HR, education, and general analytics workbooks, with dependency depth up to 46 and substantial cross-sheet structure. The full release uses the same task schema, hidden-contract format, and tiered directory layout as eval-200.
48
+
49
+ ## Dataset Viewer
50
+
51
+ The Dataset Viewer displays `data/eval_200_manifest.parquet`, not the raw `.xlsx` files. Spreadsheet workbooks and hidden contracts are stored as repository files and should be downloaded or browsed directly.
52
+
53
+ Manifest columns include:
54
+
55
+ - `fcb_id`: stable task identifier.
56
+ - `tier` / `tier_label`: quality-difficulty tier.
57
+ - `category`: `single_sheet` or `cross_sheet`.
58
+ - `domain`: workbook domain label.
59
+ - `depth`: dependency-chain depth.
60
+ - `is_cross_sheet`: whether the task requires cross-sheet reasoning.
61
+ - `total_masked`: number of masked cells.
62
+ - `formula_families`: coarse formula-family labels.
63
+ - `masked_workbook`: path to the solver-visible workbook.
64
+ - `task_description`: path to the natural-language task description.
65
+ - `evaluator_contract_dir`: path to evaluator-only ground-truth contracts.
66
+
67
+ ## Usage
68
+
69
+ Download the archive:
70
 
71
  ```bash
72
  tar -xzf FormulaCascade_Benchmark_eval_200.tar.gz
73
  ```
74
 
75
+ For each task, provide the solver with:
76
 
77
+ - `release/FCB-NNNNN/task_description.json`
78
+ - `release/FCB-NNNNN/task-NNNNN.xlsx`
79
+
80
+ Use the corresponding `internal/FCB-NNNNN/` directory for evaluation only. It contains target contracts, dependency layers, ground truth, provenance, and release-quality audit files.
81
 
82
  ## Intended Use
83
 
84
+ FormulaCascade is intended for evaluating spreadsheet agents, LLM tool-use systems, formula-reasoning methods, and spreadsheet-native harnesses under controlled executable conditions. It is designed for research, benchmarking, diagnostics, and reproducibility studies.
85
+
86
+ ## Out-of-Scope Use
87
+
88
+ FormulaCascade is not intended for training production models on evaluator-only hidden contracts, making decisions about individuals, or evaluating unrestricted spreadsheet UI automation, macro execution, or non-spreadsheet office workflows.
89
+
90
+ ## License
91
+
92
+ Creative Commons Attribution-NonCommercial 4.0 International (**CC BY-NC 4.0**).
93