7jep7 commited on
Commit
e9cc072
·
verified ·
1 Parent(s): 81a0219

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +49 -26
README.md CHANGED
@@ -9,6 +9,8 @@ tags:
9
  - anomaly-detection
10
  - physical-ai
11
  - industrial
 
 
12
  size_categories:
13
  - 1M<n<10M
14
  language:
@@ -22,12 +24,15 @@ A unified multi-robot time-series dataset for industrial anomaly detection and P
22
 
23
  ## Dataset Description
24
 
25
- FactoryNet unifies multiple robot operation datasets into a common schema for training anomaly detection and reasoning models. This release includes:
26
 
27
- | Dataset | Robot | Task | Episodes | Signals | Faults |
28
- |---------|-------|------|----------|---------|--------|
29
- | **AURSAD** | UR3e (6-DOF) | Screwdriving | 4,094 | 134 | 5 types |
30
- | **voraus-AD** | Yu-Cobot (6-DOF) | Pick-and-place | 2,122 | 137 | 12 types |
 
 
 
31
 
32
  ## FactoryNet Schema
33
 
@@ -39,7 +44,9 @@ Intent (setpoint) → Action (effort) → Outcome (feedback)
39
 
40
  ### Core Columns (Tier 1 - Universal)
41
  ```python
42
- setpoint_pos_0..N # Commanded joint positions (rad)
 
 
43
  effort_torque_0..N # Motor torque/current (Nm / A)
44
  feedback_pos_0..N # Actual joint positions (rad)
45
  timestamp # Seconds since episode start
@@ -50,6 +57,8 @@ timestamp # Seconds since episode start
50
  setpoint_vel_* # Commanded velocities
51
  feedback_vel_* # Actual velocities
52
  effort_force_x/y/z # End-effector forces
 
 
53
  ctx_temp_* # Joint temperatures
54
  ```
55
 
@@ -58,12 +67,20 @@ ctx_temp_* # Joint temperatures
58
  ```python
59
  from datasets import load_dataset
60
 
61
- # Load AURSAD subset
62
- ds = load_dataset("forgis/factorynet-hackathon", data_dir="aursad")
 
 
 
 
 
 
 
63
 
64
- # Access time series
 
65
  df = ds['train'].to_pandas()
66
- print(df[['timestamp', 'setpoint_pos_0', 'effort_torque_0', 'feedback_pos_0']].head())
67
  ```
68
 
69
  ## Minimum Viable Episode (MVE)
@@ -76,34 +93,39 @@ This enables causal analysis: if `effort` doesn't follow `setpoint`, something i
76
 
77
  ## Fault Types
78
 
79
- | Code | Description | Example |
80
  |------|-------------|---------|
81
- | `normal` | Normal operation | - |
82
- | `stiff_joint` | Increased joint friction | AURSAD: damaged_thread |
83
- | `collision` | Contact with obstacle | voraus: can_collision |
84
- | `grip_failure` | Gripper malfunction | voraus: vacuum_loss |
85
- | `missing_part` | Expected part absent | AURSAD: missing_screw |
86
- | `tool_wear` | Progressive degradation | PHM2010: flank_wear |
87
 
88
  ## File Structure
89
 
90
  ```
91
- forgis/factorynet-hackathon/
92
  ├── aursad/
93
- ├── aursad_factorynet.parquet # Time series (14K rows sample)
94
- │ ├── aursad_extensions.parquet # Dataset-specific columns
95
- │ └── aursad_metadata.json # Episode metadata
96
  ├── voraus/
97
- ├── voraus_ad_100hz_factorynet.parquet
98
- │ └── voraus_ad_100hz_metadata.json
99
- └── schema.json # FactoryNet schema reference
 
 
 
 
 
 
 
100
  ```
101
 
102
  ## Use Cases
103
 
104
  1. **Anomaly Detection**: Train classifiers to detect faulty operations
105
  2. **Fault Diagnosis**: Identify which component/joint is failing
106
- 3. **Remaining Useful Life**: Predict when tool/component will fail
107
  4. **Sim2Real Transfer**: Use real data to calibrate simulators
108
  5. **Robot Q&A**: Answer natural language questions about robot state
109
 
@@ -117,7 +139,7 @@ If you use this dataset, please cite:
117
  author={Forgis AI},
118
  year={2026},
119
  publisher={HuggingFace},
120
- url={https://huggingface.co/datasets/forgis/factorynet-hackathon}
121
  }
122
  ```
123
 
@@ -126,6 +148,7 @@ If you use this dataset, please cite:
126
  This dataset unifies and standardizes:
127
  - **AURSAD**: [Zenodo](https://zenodo.org/records/4487073) - CC BY 4.0
128
  - **voraus-AD**: [GitHub](https://github.com/vorausrobotik/voraus-ad-dataset) - MIT License
 
129
 
130
  ## License
131
 
 
9
  - anomaly-detection
10
  - physical-ai
11
  - industrial
12
+ - tool-wear
13
+ - cnc
14
  size_categories:
15
  - 1M<n<10M
16
  language:
 
24
 
25
  ## Dataset Description
26
 
27
+ FactoryNet unifies multiple industrial operation datasets into a common schema for training anomaly detection and reasoning models. This release includes:
28
 
29
+ | Dataset | Machine | Task | Episodes | Rows | Faults |
30
+ |---------|---------|------|----------|------|--------|
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
 
 
44
 
45
  ### Core Columns (Tier 1 - Universal)
46
  ```python
47
+ setpoint_pos_0..N # Commanded joint positions (rad) - for robots
48
+ setpoint_doc # Depth of cut (mm) - for CNC
49
+ setpoint_feed # Feed rate (mm/rev) - for CNC
50
  effort_torque_0..N # Motor torque/current (Nm / A)
51
  feedback_pos_0..N # Actual joint positions (rad)
52
  timestamp # Seconds since episode start
 
57
  setpoint_vel_* # Commanded velocities
58
  feedback_vel_* # Actual velocities
59
  effort_force_x/y/z # End-effector forces
60
+ aux_vibration_* # Vibration sensors
61
+ aux_acoustic_* # Acoustic emission
62
  ctx_temp_* # Joint temperatures
63
  ```
64
 
 
67
  ```python
68
  from datasets import load_dataset
69
 
70
+ # Load AURSAD (robot screwdriving)
71
+ ds = load_dataset("Forgis/factorynet-hackathon", data_dir="aursad")
72
+ df = ds['train'].to_pandas()
73
+ print(f"AURSAD: {df['episode_id'].nunique()} episodes")
74
+
75
+ # Load voraus-AD (robot pick-and-place)
76
+ ds = load_dataset("Forgis/factorynet-hackathon", data_dir="voraus")
77
+ df = ds['train'].to_pandas()
78
+ print(f"voraus-AD: {df['episode_id'].nunique()} episodes")
79
 
80
+ # Load NASA Milling (CNC tool wear)
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)
 
93
 
94
  ## Fault Types
95
 
96
+ | Code | Description | Dataset |
97
  |------|-------------|---------|
98
+ | `normal` | Normal operation | All |
99
+ | `stiff_joint` | Increased joint friction | AURSAD |
100
+ | `collision` | Contact with obstacle | voraus-AD |
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
 
124
  ## Use Cases
125
 
126
  1. **Anomaly Detection**: Train classifiers to detect faulty operations
127
  2. **Fault Diagnosis**: Identify which component/joint is failing
128
+ 3. **Remaining Useful Life**: Predict when tool/component will fail (NASA Milling)
129
  4. **Sim2Real Transfer**: Use real data to calibrate simulators
130
  5. **Robot Q&A**: Answer natural language questions about robot state
131
 
 
139
  author={Forgis AI},
140
  year={2026},
141
  publisher={HuggingFace},
142
+ url={https://huggingface.co/datasets/Forgis/factorynet-hackathon}
143
  }
144
  ```
145
 
 
148
  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