Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- time-series-classification
|
| 5 |
+
- question-answering
|
| 6 |
+
tags:
|
| 7 |
+
- robotics
|
| 8 |
+
- manufacturing
|
| 9 |
+
- anomaly-detection
|
| 10 |
+
- physical-ai
|
| 11 |
+
- industrial
|
| 12 |
+
size_categories:
|
| 13 |
+
- 1M<n<10M
|
| 14 |
+
language:
|
| 15 |
+
- en
|
| 16 |
+
pretty_name: FactoryNet Hackathon Dataset
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# FactoryNet Hackathon Dataset
|
| 20 |
+
|
| 21 |
+
A unified multi-robot time-series dataset for industrial anomaly detection and Physical AI research.
|
| 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 |
+
|
| 34 |
+
All datasets are converted to a unified schema with causal structure:
|
| 35 |
+
|
| 36 |
+
```
|
| 37 |
+
Intent (setpoint) → Action (effort) → Outcome (feedback)
|
| 38 |
+
```
|
| 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
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
### Common Columns (Tier 2)
|
| 49 |
+
```python
|
| 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 |
+
|
| 56 |
+
## Quick Start
|
| 57 |
+
|
| 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)
|
| 70 |
+
|
| 71 |
+
Every episode in FactoryNet satisfies the **Minimum Viable Episode** constraint:
|
| 72 |
+
- ≥1 setpoint signal (commanded intent)
|
| 73 |
+
- ≥1 effort signal (motor response)
|
| 74 |
+
|
| 75 |
+
This enables causal analysis: if `effort` doesn't follow `setpoint`, something is wrong.
|
| 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 |
+
|
| 110 |
+
## Citation
|
| 111 |
+
|
| 112 |
+
If you use this dataset, please cite:
|
| 113 |
+
|
| 114 |
+
```bibtex
|
| 115 |
+
@dataset{factorynet2026,
|
| 116 |
+
title={FactoryNet: A Unified Dataset for Industrial Robot Anomaly Detection},
|
| 117 |
+
author={Forgis AI},
|
| 118 |
+
year={2026},
|
| 119 |
+
publisher={HuggingFace},
|
| 120 |
+
url={https://huggingface.co/datasets/forgis/factorynet-hackathon}
|
| 121 |
+
}
|
| 122 |
+
```
|
| 123 |
+
|
| 124 |
+
## Source Datasets
|
| 125 |
+
|
| 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 |
+
|
| 132 |
+
CC BY 4.0 - Free to use with attribution.
|
| 133 |
+
|
| 134 |
+
## Contact
|
| 135 |
+
|
| 136 |
+
- Forgis AI: hackathon@forgis.com
|
| 137 |
+
- Physical AI Hackathon: Zurich, Feb 28 - Mar 1, 2026
|