liveplex commited on
Commit
ea92634
·
verified ·
1 Parent(s): 1d4e17f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +123 -157
README.md CHANGED
@@ -1,157 +1,123 @@
1
- ---
2
- language:
3
- - en
4
- - ko
5
- license: mit
6
- task_categories:
7
- - robotics
8
- - tabular-classification
9
- tags:
10
- - robotics
11
- - failure-analysis
12
- - pick-and-place
13
- - nvidia-isaac-sim
14
- - franka-panda
15
- - ur5e
16
- - physical-ai
17
- - cross-robot
18
- size_categories:
19
- - 10K<n<100K
20
- configs:
21
- - config_name: default
22
- data_files:
23
- - split: franka
24
- path: data/franka-*
25
- - split: franka_boundary
26
- path: data/franka_boundary-*
27
- - split: ur5e
28
- path: data/ur5e-*
29
- - split: train
30
- path: data/train-*
31
- dataset_info:
32
- features:
33
- - name: friction
34
- dtype: float64
35
- - name: mass
36
- dtype: float64
37
- - name: com_offset
38
- dtype: float64
39
- - name: size
40
- dtype: float64
41
- - name: ik_noise
42
- dtype: float64
43
- - name: obstacles
44
- dtype: int64
45
- - name: shape
46
- dtype: string
47
- - name: placement
48
- dtype: string
49
- - name: success
50
- dtype: bool
51
- - name: failure_type
52
- dtype: string
53
- - name: cycle_time
54
- dtype: float64
55
- - name: collision
56
- dtype: bool
57
- - name: drop
58
- dtype: bool
59
- - name: grasp_miss
60
- dtype: bool
61
- - name: fail_prob
62
- dtype: float64
63
- - name: zone
64
- dtype: string
65
- - name: sample_idx
66
- dtype: int64
67
- splits:
68
- - name: franka
69
- num_bytes: 1165541
70
- num_examples: 10000
71
- - name: franka_boundary
72
- num_bytes: 1154763
73
- num_examples: 10000
74
- - name: ur5e
75
- num_bytes: 1021943
76
- num_examples: 10000
77
- - name: train
78
- num_bytes: 3342247
79
- num_examples: 30000
80
- download_size: 2723675
81
- dataset_size: 6684494
82
- ---
83
-
84
- # RoboGate Failure Dictionary
85
-
86
- A structured database of **20,000** robot AI failure experiments from NVIDIA Isaac Sim physical simulations across **2 robot platforms**.
87
-
88
- ## Quick Stats
89
-
90
- | | Franka Panda | UR5e | Combined |
91
- |---|---|---|---|
92
- | **Experiments** | 10,000 | 10,000 | **20,000** |
93
- | **Success Rate** | 33.3% | 74.3% | 53.8% |
94
- | **Gripper** | Finger (parallel jaw) | SurfaceGripper (suction) | - |
95
- | **Failure Modes** | grasp_miss, drop, collision | grasp_miss only | 3 types |
96
- | **#1 Factor** | friction (r=+0.36) | mass (r=-0.35) | - |
97
-
98
- ## Splits
99
-
100
- - `franka`: 10,000 Franka Panda experiments
101
- - `ur5e`: 10,000 UR5e experiments
102
- - `all`: 20,000 combined experiments (with `robot` column)
103
-
104
- ## Usage
105
-
106
- ```python
107
- from datasets import load_dataset
108
-
109
- ds = load_dataset("liveplex/robogate-failure-dictionary", split="all")
110
- print(f"Total: {len(ds)}")
111
-
112
- # Cross-robot comparison
113
- franka = load_dataset("liveplex/robogate-failure-dictionary", split="franka")
114
- ur5e = load_dataset("liveplex/robogate-failure-dictionary", split="ur5e")
115
- print(f"Franka: {sum(franka['success'])/len(franka):.1%}")
116
- print(f"UR5e: {sum(ur5e['success'])/len(ur5e):.1%}")
117
- ```
118
-
119
- ## Key Findings
120
-
121
- - **2.2x success gap**: UR5e (74.3%) vs Franka (33.3%), z=-58.15, p<0.001
122
- - **Suction never drops**: UR5e drop rate = 0%; all failures are grasp_miss
123
- - **Friction is universal**: Both robots fail 80%+ when friction < 0.15
124
- - **Mass kills suction**: UR5e mass [2.4-3.0) -> 85% failure rate
125
-
126
- ## Schema
127
-
128
- | Field | Type | Description |
129
- |-------|------|-------------|
130
- | robot | string | "franka_panda" or "ur5e" |
131
- | friction | float | Surface friction coefficient |
132
- | mass | float | Object mass in kg |
133
- | size | float | Object size in meters |
134
- | com_offset | float | Center of mass offset |
135
- | ik_noise | float | IK noise level |
136
- | obstacles | int | Number of obstacles |
137
- | shape | string | Object shape |
138
- | placement | string | Object placement |
139
- | success | bool | Whether the task succeeded |
140
- | failure_type | string | Classification of failure |
141
- | cycle_time | float | Time to complete in seconds |
142
- | collision | bool | Whether collision occurred |
143
- | drop | bool | Whether object was dropped |
144
- | grasp_miss | bool | Whether grasp was missed |
145
- | zone | string | Risk zone (safe/boundary/danger) |
146
-
147
- ## Citation
148
-
149
- ```bibtex
150
- @dataset{robogate_failure_dict_2026,
151
- title={RoboGate Failure Dictionary: 20K Physics-Validated Pick & Place Failure Patterns},
152
- author={RoboGate Team},
153
- year={2026},
154
- url={https://huggingface.co/datasets/liveplex/robogate-failure-dictionary},
155
- note={Franka Panda + UR5e, NVIDIA Isaac Sim, Latin Hypercube Sampling}
156
- }
157
- ```
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - failure-analysis
7
+ - pick-and-place
8
+ - isaac-sim
9
+ - franka-panda
10
+ - ur5e
11
+ - domain-randomization
12
+ - latin-hypercube-sampling
13
+ - adaptive-sampling
14
+ - physical-ai
15
+ size_categories:
16
+ - 10K<n<100K
17
+ language:
18
+ - en
19
+ - ko
20
+ ---
21
+
22
+ # RoboGate Failure Dictionary
23
+
24
+ > **30,000 Physics-Validated Pick & Place Failure Patterns across Franka Panda & UR5e**
25
+
26
+ A structured database of robot AI failure patterns collected from **NVIDIA Isaac Sim** physical simulations using **Two-Stage Adaptive Sampling**. Each experiment records the exact conditions under which a robot succeeded or failed at Pick & Place tasks.
27
+
28
+ ## Quick Stats
29
+
30
+ | | Franka Uniform | Franka Boundary | UR5e | Combined |
31
+ |---|---|---|---|---|
32
+ | **Experiments** | 10,000 | 10,000 | 10,000 | **30,000** |
33
+ | **Success Rate** | 33.3% | 63.8% | 74.3% | — |
34
+ | **Franka Combined** | — | 48.6% | — | — |
35
+ | **Risk Model AUC** | 0.65 | **0.777** | — | 0.777 |
36
+ | **Sampling** | Uniform LHS | Boundary LHS | Uniform LHS | Two-Stage |
37
+
38
+ ## Key Findings
39
+
40
+ - **friction × mass interaction z = -10.00** — strongest predictor of failure
41
+ - **Friction threshold: 0.492 ± 0.031** — below this, failure cascades
42
+ - **Mass > 0.93 kg** → Both robots fail at **< 40%** SR (universal danger zone)
43
+ - **Boundary equation:** μ*(m) = (1.469 + 0.419m) / (3.691 - 1.400m)
44
+ - **AUC improved 0.65 → 0.777** (+19.5%) with boundary-focused sampling
45
+ - **Failure mode transition:** friction↓ → timeout → collision → grasp_miss
46
+
47
+ ## Two-Stage Adaptive Sampling
48
+
49
+ **Stage 1 — Uniform Exploration (20,000)**
50
+ - Franka Panda 10K + UR5e 10K
51
+ - Latin Hypercube Sampling for uniform parameter space coverage
52
+ - Identified boundary regions and initial risk model (AUC 0.65)
53
+
54
+ **Stage 2 — Boundary-Focused (10,000)**
55
+ - Franka Panda only, targeting boundary/transition regions
56
+ - Concentrated sampling near friction threshold 0.492
57
+ - Revealed failure mode transitions invisible to uniform sampling
58
+ - Boosted Risk Model AUC to 0.777 (+19.5%)
59
+
60
+ ## Universal Danger Zones (mass > 0.93 kg)
61
+
62
+ | Mass Range | Franka SR | UR5e SR |
63
+ |---|---|---|
64
+ | 0.93 – 1.23 kg | 21.4% | 30.9% |
65
+ | 1.23 – 1.52 kg | 14.9% | 25.3% |
66
+ | 1.52 – 1.82 kg | 12.5% | 28.9% |
67
+ | 1.82 – 2.11 kg | 6.6% | 28.1% |
68
+
69
+ ## Usage
70
+
71
+ ```python
72
+ from datasets import load_dataset
73
+
74
+ ds = load_dataset("liveplex/robogate-failure-dictionary")
75
+ print(ds["train"][0])
76
+
77
+ # Filter danger zones
78
+ danger = ds["train"].filter(lambda x: x["zone"] == "danger")
79
+ print(f"Danger zones: {len(danger)}")
80
+ ```
81
+
82
+ ## Parameter Space
83
+
84
+ | Parameter | Range | Scale | Paper |
85
+ |-----------|-------|-------|-------|
86
+ | friction | 0.05 1.2 | log-uniform | SIMPLER 2024 |
87
+ | mass | 0.05 – 2.0 kg | log-uniform | SIMPLER 2024 |
88
+ | com_offset | 0.0 – 0.40 | uniform | Suction Grasp 2025 |
89
+ | size | 0.02 – 0.12 m | uniform | SIMPLER 2024 |
90
+ | ik_noise | 0.0 0.04 rad | uniform | ICRA Sim2Real 2025 |
91
+ | obstacles | 0 – 4 | integer | RoboFAC 2025 |
92
+ | shape | 5 types | categorical | Grasp Anything 2024 |
93
+ | placement | 14 types | categorical | ALEAS 2025 |
94
+
95
+ ## Research Foundations
96
+
97
+ | Design Choice | Paper | Year |
98
+ |---|---|---|
99
+ | Two-Stage Adaptive Sampling | ALEAS | 2025 |
100
+ | friction × mass interaction | SIMPLER | CoRL 2024 |
101
+ | Failure taxonomy | RoboFAC | NeurIPS 2025 |
102
+ | Cross-robot validation | RoboMIND | RSS 2025 |
103
+ | UR-specific failures | Guardian | ICRA 2025 |
104
+ | Confidence intervals | SureSim | Badithela 2025 |
105
+ | GPU simulation | Isaac Lab | NVIDIA 2025 |
106
+ | Grasp evaluation | Isaac Sim Grasping SDG | NVIDIA 2025 |
107
+
108
+ ## Citation
109
+
110
+ ```bibtex
111
+ @dataset{robogate_failure_dictionary_2026,
112
+ title={RoboGate Failure Dictionary: 30K Physics-Validated Pick & Place Failure Patterns},
113
+ author={RoboGate Team},
114
+ year={2026},
115
+ url={https://huggingface.co/datasets/liveplex/robogate-failure-dictionary},
116
+ note={Franka Panda + UR5e, Two-Stage Adaptive Sampling, AUC 0.777}
117
+ }
118
+ ```
119
+
120
+ ## Links
121
+
122
+ - **GitHub**: [liveplex-cpu/robogate-failure-dictionary](https://github.com/liveplex-cpu/robogate-failure-dictionary)
123
+ - **RoboGate Platform**: [liveplex-cpu/robogate](https://github.com/liveplex-cpu/robogate)