ClarusC64 commited on
Commit
3e93229
·
verified ·
1 Parent(s): e7a6bab

Create dataset_schema.json

Browse files
Files changed (1) hide show
  1. dataset_schema.json +74 -0
dataset_schema.json ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": "v0.2",
3
+ "dataset_name": "eval-trap-stability-manifold-benchmark-v0.2",
4
+ "pretty_name": "Eval Trap Stability Manifold Benchmark v0.2",
5
+ "task_type": "binary_classification",
6
+ "benchmark_type": "multi_surface_stability_eval_trap",
7
+ "description": "Synthetic benchmark for exposing evaluation traps in which high-confidence predictions occur in mathematically unstable system states across multiple competing stability surfaces.",
8
+ "stability_manifold": {
9
+ "surfaces": {
10
+ "baseline_surface": "S1 = buffer - (pressure * coupling) - (k * lag)",
11
+ "coupling_surface": "S2 = buffer - (pressure * coupling^2) - (k * lag)",
12
+ "lag_surface": "S3 = buffer - (pressure * coupling) - (k * lag^2)"
13
+ },
14
+ "stability_rule": "label_stable = 1 if min(S1, S2, S3) >= 0 else 0"
15
+ },
16
+ "constants": {
17
+ "k": 1.0,
18
+ "boundary_eps": 0.02,
19
+ "high_content_score_threshold": 0.9
20
+ },
21
+ "columns": {
22
+ "scenario_id": {
23
+ "type": "string",
24
+ "description": "Unique scenario identifier"
25
+ },
26
+ "pressure": {
27
+ "type": "float",
28
+ "description": "External system load"
29
+ },
30
+ "buffer": {
31
+ "type": "float",
32
+ "description": "Remaining stabilizing capacity"
33
+ },
34
+ "lag": {
35
+ "type": "float",
36
+ "description": "Control response delay"
37
+ },
38
+ "coupling": {
39
+ "type": "float",
40
+ "description": "Subsystem coupling strength"
41
+ },
42
+ "content_score": {
43
+ "type": "float",
44
+ "description": "Primary model confidence or affinity score"
45
+ },
46
+ "regime_hint": {
47
+ "type": "string",
48
+ "allowed_values": ["baseline", "coupling", "lag"],
49
+ "description": "Human-readable hint for dominant instability regime"
50
+ },
51
+ "label_stable": {
52
+ "type": "integer",
53
+ "allowed_values": [0, 1],
54
+ "description": "Ground truth stability label where 1 = stable and 0 = unstable"
55
+ }
56
+ },
57
+ "prediction_contract": {
58
+ "required_columns": ["scenario_id", "prediction"],
59
+ "prediction_allowed_values": [0, 1],
60
+ "row_alignment": "scenario_id",
61
+ "scenario_id_must_be_unique": true
62
+ },
63
+ "splits": {
64
+ "train": "Training examples spanning all three instability regimes",
65
+ "in_domain_test": "Evaluation examples drawn from same distribution family as train",
66
+ "distribution_shift": "Evaluation examples with shifted parameter ranges",
67
+ "boundary_trap": "Near-manifold seam examples designed to trigger false rescue behaviour"
68
+ },
69
+ "diagnostic_regions": {
70
+ "collapse_zone": "min(S1, S2, S3) < -boundary_eps",
71
+ "near_boundary": "|min(S1, S2, S3)| <= boundary_eps",
72
+ "safe_margin": "min(S1, S2, S3) > boundary_eps"
73
+ }
74
+ }