Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
scenario_id
int64
system_stress
float64
physiological_buffer
float64
intervention_delay
float64
organ_coupling
float64
drift_gradient
float64
drift_velocity
float64
drift_acceleration
float64
boundary_distance
float64
perturbation_radius
float64
collapse_trigger
int64
label_icu_collapse
int64
1
0.76
0.3
0.61
0.58
0.67
0.55
0.29
0.09
0.07
1
1
2
0.62
0.47
0.4
0.44
0.27
0.33
0.1
0.24
0.18
0
0
3
0.88
0.18
0.74
0.72
0.83
0.7
0.45
0.05
0.03
1
1
4
0.57
0.56
0.32
0.39
0.13
0.23
0.04
0.35
0.28
0
0
5
0.93
0.13
0.82
0.8
0.9
0.77
0.54
0.02
0.01
1
1
6
0.67
0.42
0.46
0.49
0.35
0.39
0.15
0.19
0.14
0
0
7
0.74
0.33
0.58
0.55
0.58
0.49
0.24
0.12
0.08
1
1
8
0.53
0.64
0.27
0.34
-0.04
0.18
-0.02
0.43
0.37
0
0
9
0.82
0.23
0.68
0.66
0.72
0.61
0.35
0.07
0.05
1
1
10
0.6
0.52
0.35
0.41
0.2
0.28
0.07
0.29
0.22
0
0

What this repo does

This repository contains a Clarus v0.4 cascade boundary discovery dataset modeling ICU collapse.

Earlier Clarus datasets focused on detecting cascade states or forecasting collapse trajectories.

Version v0.4 extends the framework to a harder task:

detecting whether a system lies on the instability boundary itself.

The dataset models ICU deterioration as a coupled physiological system in which rising system stress, declining physiological buffer, delayed intervention, and increasing organ coupling combine to push the system toward collapse.

The objective is to determine when the system is close enough to collapse that even small perturbations can trigger ICU collapse.

Core quad

The core ICU collapse system is modeled using four coupled variables.

system_stress
physiological_buffer
intervention_delay
organ_coupling

These variables represent interacting components of critical care instability.

system_stress
captures rising acute physiological burden across the ICU system.

physiological_buffer
represents remaining resilience, reserve, and compensatory capacity.

intervention_delay
captures delays in recognition, escalation, or corrective treatment.

organ_coupling
represents how tightly dysfunction is propagating across organ systems.

The quad structure models how these factors interact rather than acting independently.

Trajectory layer

The trajectory field describes the direction of system motion.

drift_gradient

Range
-1 to +1

Interpretation

negative values indicate movement away from instability.

positive values indicate movement toward cascade.

This variable describes whether the ICU system is stabilizing or drifting toward collapse.

Dynamic forecasting layer

The dynamic layer captures how quickly instability is developing.

drift_velocity
drift_acceleration
boundary_distance

drift_velocity
describes the speed of deterioration.

drift_acceleration
captures whether that deterioration is accelerating.

boundary_distance
estimates the system's proximity to the instability boundary.

Together these fields describe the system's motion through the stability landscape.

Boundary discovery layer

Version v0.4 introduces an explicit boundary discovery layer.

Two variables measure how close the system is to instability under perturbation.

perturbation_radius
collapse_trigger

These variables convert the dataset from collapse forecasting into cascade boundary discovery.

Models must determine whether the system lies safely inside the stability region or on the edge of the instability manifold.

Boundary variable definitions

perturbation_radius

Minimum normalized perturbation required to push the system across the cascade boundary.

Definition

perturbation_radius = min ||δx|| such that
x(t) + δx → cascade

Interpretation

small values indicate the system is extremely close to instability.

large values indicate strong stability margin.

Range

0 to 1

collapse_trigger

Binary indicator describing the observed response of the system to perturbation.

0
system remains stable

1
system crosses the instability boundary

collapse_trigger is included as an observed perturbation response feature.

It records whether the simulated perturbation produced cascade in that scenario.

Importantly, collapse_trigger is not the prediction target.

The prediction task is to determine the underlying boundary-risk state of the system.

collapse_trigger therefore acts as an auxiliary signal describing perturbation outcome rather than the classification label itself.

Systems close to instability often show collapse_trigger = 1 because very small perturbations can push them into cascade.

Prediction target

Target column

label_icu_collapse

The binary label indicates that the ICU system lies on the instability boundary.

A positive label is triggered when either condition holds.

boundary_distance < 0.10

or

perturbation_radius < 0.08

These thresholds represent complementary indicators of instability.

boundary_distance measures how close the system trajectory is to the instability manifold.

perturbation_radius measures how small a perturbation is required to trigger cascade.

If either indicator crosses its threshold, the system is considered boundary vulnerable.

This encodes minimal-perturbation cascade detection.

Binary simplification note

This dataset intentionally simplifies ICU collapse into a binary boundary detection task.

The objective is not to reproduce full critical care physiology.

The objective is to test whether models can identify when a coupled physiological system is close enough to collapse that small shocks produce deterioration.

Row structure

Each dataset row contains

scenario_id

system_stress
physiological_buffer
intervention_delay
organ_coupling

drift_gradient
drift_velocity
drift_acceleration
boundary_distance

perturbation_radius
collapse_trigger

label_icu_collapse

Normalization rules

state variables range from 0 to 1

drift_gradient ranges from -1 to +1

drift_velocity ranges from 0 to 1

drift_acceleration ranges from -1 to +1

boundary_distance ranges from 0 to 1

perturbation_radius ranges from 0 to 1

collapse_trigger is binary

Files

data/train.csv
labeled training examples

data/tester.csv
unlabeled evaluation examples

scorer.py
binary boundary detection evaluation script

README.md
dataset documentation

Evaluation

The scorer reports

accuracy
precision
recall_boundary_detection
false_safe_rate
f1
confusion_matrix

Primary metric

recall_boundary_detection

Secondary diagnostic metric

false_safe_rate

Boundary detection tasks prioritize recall because missing a boundary case means incorrectly labeling a near-collapse ICU system as safe.

License

MIT

Structural Note

This repository is part of the Clarus dataset version ladder.

v0.1
cascade state detection datasets

v0.2
cascade plus trajectory detection datasets

v0.3
cascade plus trajectory plus dynamic forecasting datasets

v0.4
cascade plus trajectory plus dynamics plus boundary discovery datasets

Earlier versions remain unchanged to preserve benchmark continuity.

Production Deployment

This dataset is designed as a research and benchmarking artifact.

Potential uses include

instability detection benchmarking

AI safety stress testing

clinical deterioration modeling experiments

cascade detection research

early warning system prototypes

The dataset is not intended for clinical decision making.

Enterprise & Research Collaboration

For dataset expansion, custom coherence scorers, or deployment architecture:
team@clarusinvariant.com

Instability is detectable.
Governance determines whether it propagates.

Downloads last month
13