englund commited on
Commit
f9d2b15
·
verified ·
1 Parent(s): 14eda00

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +34 -49
README.md CHANGED
@@ -1,49 +1,34 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: category
7
- dtype: string
8
- - name: difficulty
9
- dtype: string
10
- - name: corrupted_code
11
- dtype: string
12
- - name: repair_target
13
- dtype: string
14
- - name: error_info
15
- struct:
16
- - name: correct_concept
17
- dtype: string
18
- - name: corrupted_concept
19
- dtype: string
20
- - name: error_type
21
- dtype: string
22
- - name: explanation
23
- dtype: string
24
- - name: domain_knowledge_required
25
- sequence: string
26
- - name: pwm_level
27
- dtype: string
28
- splits:
29
- - name: train
30
- num_bytes: 3482
31
- num_examples: 7
32
- - name: validation
33
- num_bytes: 489
34
- num_examples: 1
35
- - name: test
36
- num_bytes: 1519
37
- num_examples: 3
38
- download_size: 22586
39
- dataset_size: 5490
40
- configs:
41
- - config_name: default
42
- data_files:
43
- - split: train
44
- path: data/train-*
45
- - split: validation
46
- path: data/validation-*
47
- - split: test
48
- path: data/test-*
49
- ---
 
1
+ # Quantum Lean Hard VVUQ Dataset
2
+
3
+ ## Overview
4
+ This dataset contains challenging Lean 4 verification and repair problems designed to test advanced reasoning capabilities and demonstrate the effectiveness of Physics World Models (PWMs) in formal verification.
5
+
6
+ ## Problem Categories
7
+ - **Type Theory**: 3 problems (coercion, dependent types, universes)
8
+ - **Tactic Sequences**: 3 problems (wrong tactics, incorrect ordering)
9
+ - **Proof Strategies**: 3 problems (wrong high-level approaches)
10
+ - **Advanced Type Theory**: 1 problems (higher-order reasoning)
11
+ - **Baseline**: 1 problems (simple for comparison)
12
+
13
+ ## Difficulty Distribution
14
+ - Easy: 1 problems
15
+ - Hard: 4 problems
16
+ - Expert: 6 problems
17
+
18
+ ## PWM Knowledge Levels
19
+ - W1 (Basic): 1 problems
20
+ - W2 (Intermediate): 3 problems
21
+ - W3 (Advanced): 7 problems
22
+
23
+ ## Expected Performance
24
+ - **Method A** (LLM only): Should struggle with hard/expert problems
25
+ - **Method E** (LLM + W3): Should handle most problems successfully
26
+ - **Clear gradient**: Performance should improve from A→B→C→D→E
27
+
28
+ ## Usage
29
+ This dataset is designed for NeurIPS experiments demonstrating PWM effectiveness in formal verification tasks.
30
+
31
+ ## Requirements
32
+ - Lean 4 with Mathlib
33
+ - Enhanced diagnostics: `set_option diagnostics true`
34
+ - Actual compilation verification (RequirementLEAN)