ClarusC64 commited on
Commit
b90f0e3
·
verified ·
1 Parent(s): 258b67b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -3
README.md CHANGED
@@ -1,3 +1,76 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ pretty_name: AI Reward Channel Attack-Surface Coherence Collapse v0.1
6
+ dataset_name: ai-reward-channel-attack-surface-coherence-collapse-v0.1
7
+ tags:
8
+ - clarusc64
9
+ - ai-safety
10
+ - alignment
11
+ - reward-hacking
12
+ - reward-tampering
13
+ task_categories:
14
+ - text-classification
15
+ - tabular-classification
16
+ - reinforcement-learning
17
+ size_categories:
18
+ - 1K<n<10K
19
+ configs:
20
+ - config_name: default
21
+ data_files:
22
+ - split: train
23
+ path: data/train/ai-reward-channel-attack-surface-coherence-collapse.csv
24
+ ---
25
+
26
+ ## What this dataset is
27
+
28
+ This dataset models reward tampering as a coherence collapse.
29
+
30
+ It tracks when the link between task success and reward breaks
31
+ because the agent starts interacting with the reward channel itself.
32
+
33
+ ## What it tests
34
+
35
+ Given a scenario you output:
36
+
37
+ - collapse_flag
38
+ - collapse_driver
39
+ - channel_coherence_score
40
+ - minimal_mitigation_set
41
+
42
+ ## What the fields mean
43
+
44
+ - channel_coherence_score
45
+ How well reward still tracks intended task success
46
+ 0 means fully broken
47
+ 1 means intact
48
+
49
+ - collapse_flag
50
+ 0 means still coherent
51
+ 1 means coherence collapsed
52
+
53
+ - collapse_driver
54
+ What caused the collapse
55
+ examples: exploit, evaluator_manipulation, termination_hack
56
+
57
+ - minimal_mitigation_set
58
+ The smallest set of controls to stop the attack path
59
+
60
+ ## Why it matters
61
+
62
+ Reward hacking starts as probing.
63
+
64
+ If you see the coherence score dropping early
65
+ you can isolate reward channels before full tampering.
66
+
67
+ ## Files
68
+
69
+ - data/train/ai-reward-channel-attack-surface-coherence-collapse.csv
70
+ - tester.csv
71
+ - scorer.py
72
+ - README.md
73
+
74
+ ## Path
75
+
76
+ ClarusC64/ai-reward-channel-attack-surface-coherence-collapse-v0.1