liveplex commited on
Commit
c2170d9
·
verified ·
1 Parent(s): 295a10a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +95 -112
README.md CHANGED
@@ -1,112 +1,95 @@
1
- ---
2
- license: apache-2.0
3
- task_categories:
4
- - robotics
5
- tags:
6
- - pick-and-place
7
- - failure-analysis
8
- - domain-randomization
9
- - franka-panda
10
- - isaac-sim
11
- size_categories:
12
- - 10K<n<100K
13
- dataset_info:
14
- features:
15
- - name: friction
16
- dtype: float64
17
- - name: mass
18
- dtype: float64
19
- - name: size
20
- dtype: float64
21
- - name: com_offset
22
- dtype: float64
23
- - name: ik_noise
24
- dtype: float64
25
- - name: obstacles
26
- dtype: int64
27
- - name: shape
28
- dtype: string
29
- - name: placement
30
- dtype: string
31
- - name: success
32
- dtype: bool
33
- - name: failure_type
34
- dtype: string
35
- - name: cycle_time
36
- dtype: float64
37
- - name: collision
38
- dtype: bool
39
- - name: drop
40
- dtype: bool
41
- - name: grasp_miss
42
- dtype: bool
43
- - name: zone
44
- dtype: string
45
- - name: robot
46
- dtype: string
47
- splits:
48
- - name: franka
49
- num_bytes: 1165541
50
- num_examples: 10000
51
- - name: ur5e
52
- num_bytes: 941943
53
- num_examples: 10000
54
- - name: all
55
- num_bytes: 2107484
56
- num_examples: 20000
57
- download_size: 1307807
58
- dataset_size: 4214968
59
- configs:
60
- - config_name: default
61
- data_files:
62
- - split: franka
63
- path: data/franka-*
64
- - split: ur5e
65
- path: data/ur5e-*
66
- - split: all
67
- path: data/all-*
68
- ---
69
-
70
- # RoboGate Failure Dictionary
71
-
72
- Systematic failure analysis for Franka Panda pick-and-place across
73
- 10,000 parameter combinations using Latin Hypercube Sampling.
74
-
75
- ## Dataset Description
76
-
77
- - **Generated**: 2026-03-20T22:41:26Z
78
- - **Samples**: 10,000
79
- - **Success Rate**: 33.3%
80
- - **Sampling**: Latin Hypercube (7D continuous + 2 categorical)
81
- - **Simulator**: NVIDIA Isaac Sim 5.x / Analytic physics model
82
-
83
- ## Parameter Space
84
-
85
- | Parameter | Range | Scale |
86
- |-----------|-------|-------|
87
- | friction | 0.05 - 1.2 | log |
88
- | mass | 0.05 - 2.0 kg | log |
89
- | com_offset | 0.0 - 0.40 | linear |
90
- | size | 0.02 - 0.12 m | linear |
91
- | ik_noise | 0.0 - 0.04 m | linear |
92
- | obstacles | 0 - 4 | integer |
93
- | shape | box, cylinder, sphere, L_shape, irregular | categorical |
94
- | placement | 14 presets | categorical |
95
-
96
- ## Zone Distribution
97
-
98
- | Zone | Count | Criteria |
99
- |------|------:|---------|
100
- | safe | 35 | fail_prob < 0.30 |
101
- | boundary | 2157 | 0.30 <= fail_prob < 0.70 |
102
- | danger | 7808 | fail_prob >= 0.70 |
103
-
104
- ## Citation
105
-
106
- ```bibtex
107
- @misc{robogate_failure_dict,
108
- title={RoboGate Failure Dictionary},
109
- year={2026},
110
- publisher={RoboGate},
111
- }
112
- ```
 
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
+ ---
21
+
22
+ # RoboGate Failure Dictionary
23
+
24
+ A structured database of **20,000** robot AI failure experiments from NVIDIA Isaac Sim physical simulations across **2 robot platforms**.
25
+
26
+ ## Quick Stats
27
+
28
+ | | Franka Panda | UR5e | Combined |
29
+ |---|---|---|---|
30
+ | **Experiments** | 10,000 | 10,000 | **20,000** |
31
+ | **Success Rate** | 33.3% | 74.3% | 53.8% |
32
+ | **Gripper** | Finger (parallel jaw) | SurfaceGripper (suction) | - |
33
+ | **Failure Modes** | grasp_miss, drop, collision | grasp_miss only | 3 types |
34
+ | **#1 Factor** | friction (r=+0.36) | mass (r=-0.35) | - |
35
+
36
+ ## Splits
37
+
38
+ - `franka`: 10,000 Franka Panda experiments
39
+ - `ur5e`: 10,000 UR5e experiments
40
+ - `all`: 20,000 combined experiments (with `robot` column)
41
+
42
+ ## Usage
43
+
44
+ ```python
45
+ from datasets import load_dataset
46
+
47
+ ds = load_dataset("liveplex/robogate-failure-dictionary", split="all")
48
+ print(f"Total: {len(ds)}")
49
+
50
+ # Cross-robot comparison
51
+ franka = load_dataset("liveplex/robogate-failure-dictionary", split="franka")
52
+ ur5e = load_dataset("liveplex/robogate-failure-dictionary", split="ur5e")
53
+ print(f"Franka: {sum(franka['success'])/len(franka):.1%}")
54
+ print(f"UR5e: {sum(ur5e['success'])/len(ur5e):.1%}")
55
+ ```
56
+
57
+ ## Key Findings
58
+
59
+ - **2.2x success gap**: UR5e (74.3%) vs Franka (33.3%), z=-58.15, p<0.001
60
+ - **Suction never drops**: UR5e drop rate = 0%; all failures are grasp_miss
61
+ - **Friction is universal**: Both robots fail 80%+ when friction < 0.15
62
+ - **Mass kills suction**: UR5e mass [2.4-3.0) -> 85% failure rate
63
+
64
+ ## Schema
65
+
66
+ | Field | Type | Description |
67
+ |-------|------|-------------|
68
+ | robot | string | "franka_panda" or "ur5e" |
69
+ | friction | float | Surface friction coefficient |
70
+ | mass | float | Object mass in kg |
71
+ | size | float | Object size in meters |
72
+ | com_offset | float | Center of mass offset |
73
+ | ik_noise | float | IK noise level |
74
+ | obstacles | int | Number of obstacles |
75
+ | shape | string | Object shape |
76
+ | placement | string | Object placement |
77
+ | success | bool | Whether the task succeeded |
78
+ | failure_type | string | Classification of failure |
79
+ | cycle_time | float | Time to complete in seconds |
80
+ | collision | bool | Whether collision occurred |
81
+ | drop | bool | Whether object was dropped |
82
+ | grasp_miss | bool | Whether grasp was missed |
83
+ | zone | string | Risk zone (safe/boundary/danger) |
84
+
85
+ ## Citation
86
+
87
+ ```bibtex
88
+ @dataset{robogate_failure_dict_2026,
89
+ title={RoboGate Failure Dictionary: 20K Physics-Validated Pick & Place Failure Patterns},
90
+ author={RoboGate Team},
91
+ year={2026},
92
+ url={https://huggingface.co/datasets/liveplex/robogate-failure-dictionary},
93
+ note={Franka Panda + UR5e, NVIDIA Isaac Sim, Latin Hypercube Sampling}
94
+ }
95
+ ```