Add robotics task category and improve documentation
Browse filesHi there, I'm Niels from the Hugging Face community science team. This PR adds the `robotics` task category to the metadata and improves the dataset card with links to the official paper, code repository, and project page. I've also added a sample usage section based on the training scripts provided in the official repository.
README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
| 3 |
configs:
|
| 4 |
- config_name: default
|
| 5 |
data_files:
|
|
@@ -34,6 +36,23 @@ dataset_info:
|
|
| 34 |
|
| 35 |
# SafeFlowMPC Finetuning Dataset
|
| 36 |
|
| 37 |
-
|
| 38 |
|
| 39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
configs:
|
| 6 |
- config_name: default
|
| 7 |
data_files:
|
|
|
|
| 36 |
|
| 37 |
# SafeFlowMPC Finetuning Dataset
|
| 38 |
|
| 39 |
+
This repository contains the finetuning dataset used in the paper [SafeFlowMPC: Predictive and Safe Trajectory Planning for Robot Manipulators with Learning-based Policies](https://huggingface.co/papers/2602.12794).
|
| 40 |
|
| 41 |
+
SafeFlowMPC is a method that combines flow matching and online optimization to achieve safe and flexible robotic manipulation. This specific dataset is used for the finetuning stage to incorporate safety considerations into the model.
|
| 42 |
+
|
| 43 |
+
- **Paper:** [SafeFlowMPC: Predictive and Safe Trajectory Planning for Robot Manipulators with Learning-based Policies](https://huggingface.co/papers/2602.12794)
|
| 44 |
+
- **Code:** [SafeFlowMPC GitHub](https://github.com/TU-Wien-ACIN-CDS/SafeFlowMPC)
|
| 45 |
+
- **Project Page:** [https://www.acin.tuwien.ac.at/en/42d6](https://www.acin.tuwien.ac.at/en/42d6)
|
| 46 |
+
|
| 47 |
+
## Usage
|
| 48 |
+
|
| 49 |
+
This dataset is designed to be used with the SafeFlowMPC training scripts. To finetune a model on this dataset with safety considerations, you can use the following command from the official repository:
|
| 50 |
+
|
| 51 |
+
```bash
|
| 52 |
+
python train_imitation_learning_safe.py
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
The script is configured to load this dataset automatically from the Hugging Face Hub.
|
| 56 |
+
|
| 57 |
+
## Dataset Creation
|
| 58 |
+
The dataset was created using the VP-STO planner. It contains safe intermediate trajectories generated to train the flow matching model for precise and safe robotic tasks, such as grasping and human-robot object handovers on a KUKA 7-DoF manipulator.
|