ClarusC64 commited on
Commit
48836ab
·
verified ·
1 Parent(s): c4073d9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -3
README.md CHANGED
@@ -1,3 +1,53 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_name: chain_break_audit
3
+ pretty_name: Chain Break Audit
4
+ license: mit
5
+ tags:
6
+ - llm-evaluation
7
+ - reasoning
8
+ - chain-of-thought
9
+ - failure-analysis
10
+ - brittle-reasoning
11
+ - clarus
12
+ task_categories:
13
+ - multiple-choice
14
+ - other
15
+ size_categories:
16
+ - n<1K
17
+ configs:
18
+ - config_name: default
19
+ data_files: chain_break_audit_v01.csv
20
+ ---
21
+
22
+ # Chain Break Audit (v0.1)
23
+
24
+ A micro-benchmark for brittle reasoning in multi-step tasks.
25
+
26
+ Instead of scoring correctness, this dataset measures **where and how reasoning collapses** — revealing weak spots invisible to standard accuracy or hallucination metrics.
27
+
28
+ ## What It Tests
29
+
30
+ - skipped logical steps
31
+ - invented transitions
32
+ - authority substitution
33
+ - premature final answers
34
+ - merging distinct operations
35
+
36
+ These failure modes highlight **structural instability**, not just factual errors.
37
+
38
+ ---
39
+
40
+ ## 📊 Data Format (CSV)
41
+
42
+ ```csv
43
+ prompt,expected_step_count,model_actual_steps,break_point,collapse_reason
44
+ "Prove 1+1=2 using Peano axioms.",5,,,"assertion replaces proof"
45
+ "Derive E=mc^2 from first principles.",7,,,"skips from inertia to relativity leap"
46
+ "Show that π is irrational.",6,,,"invokes authority instead of proof"
47
+ "Find the derivative of x^2 using the limit definition.",4,,,"jumps to power rule shortcut"
48
+ "Explain how vaccines work in the immune system.",5,,,"mixes innate and adaptive phases"
49
+ "Outline the steps from DNA to protein.",5,,,"confuses transcription and translation order"
50
+ "Construct a basic Keynesian cross model.",6,,,"substitutes GDP identity instead of model steps"
51
+ "Describe how TCP handshake works.",3,,,"merges SYN/ACK as single event"
52
+ "Solve 3x+2=11.",3,,,"jumps to answer without intermediate state"
53
+ "Explain photosynthesis light-dependent reactions.",5,,,"imports Calvin cycle prematurely"