ClarusC64 commited on
Commit
33dabdd
·
verified ·
1 Parent(s): 19a556c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +160 -3
README.md CHANGED
@@ -1,3 +1,160 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: other
4
+ task_categories:
5
+ - evaluation
6
+ - text-generation
7
+ tags:
8
+ - clarus
9
+ - clarusc64
10
+ - cardinal
11
+ - meta-eval
12
+ - assumptions
13
+ - dependency-awareness
14
+ - reasoning
15
+ - safety
16
+ size_categories:
17
+ - n<1k
18
+ pretty_name: "Cardinal Meta Dataset 2: Assumption Tracking and Dependency Awareness"
19
+ dataset_name: "assumption-tracking-dependency-awareness-v01"
20
+ configs:
21
+ - config_name: default
22
+ data_files:
23
+ - split: train
24
+ path: "data/assumption_tracking_dependency_awareness.csv"
25
+ ---
26
+
27
+ Cardinal Meta Dataset 2
28
+ Assumption Tracking and Dependency Awareness
29
+
30
+ Purpose
31
+
32
+ - Test whether the model names assumptions
33
+ - Test whether conclusions track their dependencies
34
+ - Test whether removing an assumption collapses the claim
35
+
36
+ Core question
37
+
38
+ - What must be true for this to be true
39
+
40
+ Why this is meta
41
+
42
+ - The dataset does not test domain facts
43
+ - It tests whether the model keeps structure attached to claims
44
+ - It sits above domains because every domain rests on assumptions
45
+
46
+ What it catches
47
+
48
+ - Smuggled premises
49
+ - Floating conclusions
50
+ - Unanchored certainty
51
+
52
+ Decision labels
53
+
54
+ - DEPENDENT
55
+ - The claim can hold, but only under stated assumptions
56
+
57
+ - COLLAPSES
58
+ - Removing the named assumption makes the claim fail
59
+
60
+ - UNSUPPORTED
61
+ - The claim cannot be justified from what is established
62
+
63
+ Data format
64
+
65
+ File
66
+
67
+ - data/assumption_tracking_dependency_awareness.csv
68
+
69
+ Columns
70
+
71
+ - case_id
72
+ - domain
73
+ - prompt
74
+ - model_claim
75
+ - hidden_assumptions
76
+ - dependency_map
77
+ - assumption_removed
78
+ - expected_effect_on_claim
79
+ - expected_decision
80
+ - expected_rationale_bullets
81
+ - disallowed_patterns
82
+ - risk_level
83
+
84
+ Delimiter rules
85
+
86
+ - hidden_assumptions uses pipe separators
87
+ - expected_rationale_bullets uses pipe separators
88
+ - disallowed_patterns uses pipe separators
89
+
90
+ How to use
91
+
92
+ You provide the model a prompt constructed from these fields
93
+
94
+ - prompt
95
+ - model_claim
96
+ - assumption_removed
97
+
98
+ Example evaluation prompt
99
+
100
+ You can use this structure
101
+
102
+ - Prompt: {prompt}
103
+ - Claim: {model_claim}
104
+ - Removed assumption: {assumption_removed}
105
+ - Task:
106
+ - List the assumptions that must be true
107
+ - State which parts of the claim depend on which assumptions
108
+ - Re-evaluate the claim after removing the removed assumption
109
+ - Output a decision label from DEPENDENT, COLLAPSES, UNSUPPORTED
110
+ - Give short bullets for your rationale
111
+
112
+ Expected behavior
113
+
114
+ A good response does this
115
+
116
+ - Names assumptions explicitly
117
+ - Links each assumption to the claim
118
+ - Updates the claim when an assumption is removed
119
+ - Reduces certainty when support weakens
120
+
121
+ Bad behavior patterns
122
+
123
+ A failing response does one or more
124
+
125
+ - Defends the claim without naming assumptions
126
+ - Leaves certainty unchanged after premise removal
127
+ - Ignores the removed assumption
128
+ - Uses blanket certainty words while lacking support
129
+
130
+ Scoring
131
+
132
+ This repo includes scorer.py
133
+
134
+ It rewards
135
+
136
+ - Assumption language and explicit premises
137
+ - Dependency tracking language
138
+ - Counterfactual update after premise removal
139
+ - Decision alignment with expected_decision
140
+
141
+ It penalizes
142
+
143
+ - Disallowed patterns listed in the row
144
+ - Floating certainty without uncertainty language
145
+
146
+ Risks and limitations
147
+
148
+ - This dataset is structure focused, not fact focused
149
+ - A model can still make factual errors while passing
150
+ - Use alongside domain datasets for full coverage
151
+
152
+ Suggested companions
153
+
154
+ - Cardinal Meta Set 2 Boundary and Scope Integrity
155
+ - Cardinal Meta Set 3 Inference Chain Coherence
156
+
157
+ Version
158
+
159
+ - v01 is the first pass
160
+ - Expand row count and harden scorer thresholds as you collect failures