7jep7 commited on
Commit
de33f8c
·
verified ·
1 Parent(s): 2f43c55

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -10
README.md CHANGED
@@ -11,8 +11,11 @@ tags:
11
  - industrial
12
  - tool-wear
13
  - cnc
 
 
 
14
  size_categories:
15
- - 1M<n<10M
16
  language:
17
  - en
18
  pretty_name: FactoryNet Hackathon Dataset
@@ -31,8 +34,10 @@ FactoryNet unifies multiple industrial operation datasets into a common schema f
31
  | **AURSAD** | UR3e (6-DOF cobot) | Screwdriving | 4,094 | 6.2M | 5 types |
32
  | **voraus-AD** | Yu-Cobot (6-DOF) | Pick-and-place | 2,122 | 2.3M | 12 types |
33
  | **NASA Milling** | CNC (3-axis) | Milling | 167 | 1.5M | Tool wear |
 
 
34
 
35
- **Total: 6,383 episodes, 10M+ rows**
36
 
37
  ## FactoryNet Schema
38
 
@@ -81,6 +86,16 @@ print(f"voraus-AD: {df['episode_id'].nunique()} episodes")
81
  ds = load_dataset("Forgis/factorynet-hackathon", data_dir="nasa_milling")
82
  df = ds['train'].to_pandas()
83
  print(f"NASA Milling: {df['episode_id'].nunique()} episodes")
 
 
 
 
 
 
 
 
 
 
84
  ```
85
 
86
  ## Minimum Viable Episode (MVE)
@@ -101,23 +116,28 @@ This enables causal analysis: if `effort` doesn't follow `setpoint`, something i
101
  | `grip_failure` | Gripper malfunction | voraus-AD |
102
  | `missing_part` | Expected part absent | AURSAD |
103
  | `tool_wear` | Progressive degradation | NASA Milling |
 
104
 
105
  ## File Structure
106
 
107
  ```
108
  Forgis/factorynet-hackathon/
109
  ├── aursad/
110
- │ └── aursad_factorynet.parquet # 1.5 GB - UR3e time series
111
  ├── voraus/
112
  │ └── voraus_ad_100hz_factorynet.parquet # 461 MB - Yu-Cobot time series
113
  ├── nasa_milling/
114
- │ ├── nasa_milling_factorynet.parquet # 15 MB - CNC time series
115
- │ └── nasa_milling_metadata.json # Episode metadata with wear labels
116
- ├── metadata/
117
- │ ├── aursad_metadata.json # 78 MB - AURSAD episode metadata
118
- │ └── voraus_metadata.json # 53 MB - voraus episode metadata
119
- ├── schema.json # FactoryNet schema reference
120
- ├── factorynet_loader.py # Easy-load Python utility
 
 
 
 
121
  └── README.md
122
  ```
123
 
@@ -149,6 +169,8 @@ This dataset unifies and standardizes:
149
  - **AURSAD**: [Zenodo](https://zenodo.org/records/4487073) - CC BY 4.0
150
  - **voraus-AD**: [GitHub](https://github.com/vorausrobotik/voraus-ad-dataset) - MIT License
151
  - **NASA Milling**: [NASA Open Data](https://data.nasa.gov/dataset/milling-wear) - Public Domain
 
 
152
 
153
  ## License
154
 
 
11
  - industrial
12
  - tool-wear
13
  - cnc
14
+ - franka-panda
15
+ - assembly
16
+ - manipulation
17
  size_categories:
18
+ - 10M<n<100M
19
  language:
20
  - en
21
  pretty_name: FactoryNet Hackathon Dataset
 
34
  | **AURSAD** | UR3e (6-DOF cobot) | Screwdriving | 4,094 | 6.2M | 5 types |
35
  | **voraus-AD** | Yu-Cobot (6-DOF) | Pick-and-place | 2,122 | 2.3M | 12 types |
36
  | **NASA Milling** | CNC (3-axis) | Milling | 167 | 1.5M | Tool wear |
37
+ | **RH20T** | Franka Panda (7-DOF) | Manipulation | 500 | 1.2M | Normal |
38
+ | **REASSEMBLE** | Franka Panda (7-DOF) | Assembly | 100 | 1.0M | Task success/fail |
39
 
40
+ **Total: 6,983 episodes, 12M+ rows**
41
 
42
  ## FactoryNet Schema
43
 
 
86
  ds = load_dataset("Forgis/factorynet-hackathon", data_dir="nasa_milling")
87
  df = ds['train'].to_pandas()
88
  print(f"NASA Milling: {df['episode_id'].nunique()} episodes")
89
+
90
+ # Load RH20T (Franka manipulation tasks)
91
+ ds = load_dataset("Forgis/factorynet-hackathon", data_dir="rh20t")
92
+ df = ds['train'].to_pandas()
93
+ print(f"RH20T: {df['episode_id'].nunique()} episodes")
94
+
95
+ # Load REASSEMBLE (Franka assembly tasks)
96
+ ds = load_dataset("Forgis/factorynet-hackathon", data_dir="reassemble")
97
+ df = ds['train'].to_pandas()
98
+ print(f"REASSEMBLE: {df['episode_id'].nunique()} episodes")
99
  ```
100
 
101
  ## Minimum Viable Episode (MVE)
 
116
  | `grip_failure` | Gripper malfunction | voraus-AD |
117
  | `missing_part` | Expected part absent | AURSAD |
118
  | `tool_wear` | Progressive degradation | NASA Milling |
119
+ | `task_failure` | Assembly step failed | REASSEMBLE |
120
 
121
  ## File Structure
122
 
123
  ```
124
  Forgis/factorynet-hackathon/
125
  ├── aursad/
126
+ │ └── aursad_factorynet.parquet # 1.5 GB - UR3e time series
127
  ├── voraus/
128
  │ └── voraus_ad_100hz_factorynet.parquet # 461 MB - Yu-Cobot time series
129
  ├── nasa_milling/
130
+ │ ├── nasa_milling_factorynet.parquet # 15 MB - CNC time series
131
+ │ └── nasa_milling_metadata.json # Episode metadata with wear labels
132
+ ├── rh20t/
133
+ │ ├── rh20t_factorynet.parquet # 31 MB - Franka manipulation
134
+ │ └── rh20t_metadata.json # Episode metadata
135
+ ├── reassemble/
136
+ ├── reassemble_factorynet.parquet # 406 MB - Franka assembly
137
+ │ ├── reassemble_extensions.parquet # 19 MB - Gripper data
138
+ │ └── reassemble_metadata.json # Episode + segment metadata
139
+ ├── schema.json # FactoryNet schema reference
140
+ ├── factorynet_loader.py # Easy-load Python utility
141
  └── README.md
142
  ```
143
 
 
169
  - **AURSAD**: [Zenodo](https://zenodo.org/records/4487073) - CC BY 4.0
170
  - **voraus-AD**: [GitHub](https://github.com/vorausrobotik/voraus-ad-dataset) - MIT License
171
  - **NASA Milling**: [NASA Open Data](https://data.nasa.gov/dataset/milling-wear) - Public Domain
172
+ - **RH20T**: [Project Page](https://rh20t.github.io/) - Real Human-Robot 20 Tasks
173
+ - **REASSEMBLE**: [GitHub](https://github.com/TUWIEN-ASL/REASSEMBLE) - Assembly/Disassembly Dataset
174
 
175
  ## License
176