Improve model card for SARNN (RoboManipBaselines)
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,15 +1,22 @@
|
|
| 1 |
---
|
| 2 |
license: bsd-2-clause
|
|
|
|
| 3 |
---
|
|
|
|
| 4 |
# Spatial attention recurrent neural network (SARNN)
|
| 5 |
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
## Install
|
| 9 |
-
See [GitHub](https://github.com/isri-aist/RoboManipBaselines/blob/master/doc/install.md#SARNN) for installation.
|
| 10 |
|
| 11 |
## Policy rollout
|
| 12 |
-
|
|
|
|
| 13 |
```console
|
| 14 |
# Go to the top directory of this repository
|
| 15 |
$ cd robo_manip_baselines
|
|
@@ -17,8 +24,8 @@ $ python ./bin/Rollout.py Sarnn MujocoUR5eCable --checkpoint ./checkpoint/Sarnn/
|
|
| 17 |
```
|
| 18 |
|
| 19 |
## Technical Details
|
| 20 |
-
For more information on the technical details, please see the following paper:
|
| 21 |
-
```
|
| 22 |
@INPROCEEDINGS{SARNN_ICRA2022,
|
| 23 |
author = {Ichiwara, Hideyuki and Ito, Hiroshi and Yamamoto, Kenjiro and Mori, Hiroki and Ogata, Tetsuya},
|
| 24 |
title = {Contact-Rich Manipulation of a Flexible Object based on Deep Predictive Learning using Vision and Tactility},
|
|
@@ -29,5 +36,14 @@ For more information on the technical details, please see the following paper:
|
|
| 29 |
}
|
| 30 |
```
|
| 31 |
|
| 32 |
-
##
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: bsd-2-clause
|
| 3 |
+
pipeline_tag: robotics
|
| 4 |
---
|
| 5 |
+
|
| 6 |
# Spatial attention recurrent neural network (SARNN)
|
| 7 |
|
| 8 |
+
This repository contains a SARNN (Spatial attention recurrent neural network) model trained with the [MujocoUR5eCable dataset](https://huggingface.co/datasets/RoboManipBaselines/MujocoUR5eCable).
|
| 9 |
+
|
| 10 |
+
The model is part of **RoboManipBaselines**, a unified framework for imitation learning in robotic manipulation across real and simulation environments.
|
| 11 |
+
|
| 12 |
+
[[Paper](https://huggingface.co/papers/2509.17057)] [[Project Page](https://isri-aist.github.io/RoboManipBaselines-ProjectPage/)] [[GitHub](https://github.com/isri-aist/RoboManipBaselines)]
|
| 13 |
|
| 14 |
## Install
|
| 15 |
+
See [GitHub](https://github.com/isri-aist/RoboManipBaselines/blob/master/doc/install.md#SARNN) for installation instructions.
|
| 16 |
|
| 17 |
## Policy rollout
|
| 18 |
+
To run a trained policy, navigate to the top directory of the `robo_manip_baselines` repository and run:
|
| 19 |
+
|
| 20 |
```console
|
| 21 |
# Go to the top directory of this repository
|
| 22 |
$ cd robo_manip_baselines
|
|
|
|
| 24 |
```
|
| 25 |
|
| 26 |
## Technical Details
|
| 27 |
+
For more information on the technical details of the SARNN architecture, please see the following paper:
|
| 28 |
+
```bibtex
|
| 29 |
@INPROCEEDINGS{SARNN_ICRA2022,
|
| 30 |
author = {Ichiwara, Hideyuki and Ito, Hiroshi and Yamamoto, Kenjiro and Mori, Hiroki and Ogata, Tetsuya},
|
| 31 |
title = {Contact-Rich Manipulation of a Flexible Object based on Deep Predictive Learning using Vision and Tactility},
|
|
|
|
| 36 |
}
|
| 37 |
```
|
| 38 |
|
| 39 |
+
## Citation
|
| 40 |
+
If you use this framework or model in your work, please cite the RoboManipBaselines paper:
|
| 41 |
+
|
| 42 |
+
```bibtex
|
| 43 |
+
@article{RoboManipBaselines_Murooka_2025,
|
| 44 |
+
title={RoboManipBaselines: A Unified Framework for Imitation Learning in Robotic Manipulation across Real and Simulation Environments},
|
| 45 |
+
author={Murooka, Masaki and Motoda, Tomohiro and Nakajo, Ryoichi and Oh, Hanbit and Makihara, Koshi and Shirai, Keisuke and Ogata, Tetsuya and Domae, Yukiyasu},
|
| 46 |
+
journal={arXiv preprint arXiv:2509.17057},
|
| 47 |
+
year={2025}
|
| 48 |
+
}
|
| 49 |
+
```
|