Datasets:
Add paper and code links, update task category and license
Browse filesHi! I'm Niels, part of the community science team at Hugging Face. I've opened this PR to improve the documentation of the FEATS dataset.
Key changes:
- Added the `robotics` task category to the metadata.
- Updated the license to `mit` as specified in the official GitHub repository.
- Added links to the paper, project page, and code repository.
- Included a description of the dataset and the official BibTeX citation.
README.md
CHANGED
|
@@ -1,18 +1,47 @@
|
|
| 1 |
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
task_categories:
|
| 4 |
-
- image-feature-extraction
|
| 5 |
language:
|
| 6 |
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
tags:
|
| 8 |
- tactile-sensing
|
| 9 |
-
- robotics
|
| 10 |
- gelsight
|
| 11 |
- force-distribution
|
| 12 |
-
pretty_name: >-
|
| 13 |
-
Learning Force Distribution Estimation for the GelSight Mini Optical Tactile Sensor Based on Finite Element Analysis
|
| 14 |
-
size_categories:
|
| 15 |
-
- 10K<n<100K
|
| 16 |
arxiv: 2411.03315
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
+
license: mit
|
| 5 |
+
size_categories:
|
| 6 |
+
- 10K<n<100K
|
| 7 |
+
task_categories:
|
| 8 |
+
- robotics
|
| 9 |
+
pretty_name: FEATS - Finite Element Analysis for Tactile Sensing
|
| 10 |
tags:
|
| 11 |
- tactile-sensing
|
|
|
|
| 12 |
- gelsight
|
| 13 |
- force-distribution
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
arxiv: 2411.03315
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# FEATS: Finite Element Analysis for Tactile Sensing
|
| 18 |
+
|
| 19 |
+
[**Project Page**](https://feats-ai.github.io) | [**Paper**](https://huggingface.co/papers/2411.03315) | [**Code**](https://github.com/feats-ai/feats)
|
| 20 |
+
|
| 21 |
+
FEATS (Finite Element Analysis for Tactile Sensing) is a framework and dataset designed to estimate contact force distributions directly from raw images of a GelSight Mini optical tactile sensor. By using a U-net architecture trained on labels generated through Finite Element Analysis (FEA), the model can predict normal and shear force distributions from gel deformations.
|
| 22 |
+
|
| 23 |
+
## Dataset Description
|
| 24 |
+
|
| 25 |
+
The dataset consists of GelSight Mini images paired with shear and normal force distribution labels inferred from FEA simulations.
|
| 26 |
+
|
| 27 |
+
- **Data format**: The dataset is stored as `.npy` files.
|
| 28 |
+
- **Requirements**: It is recommended to use `numpy` version 2.X or higher to load the dataset.
|
| 29 |
+
- **Contents**: The data includes training, validation, and test sets featuring raw sensor images and corresponding force maps.
|
| 30 |
+
|
| 31 |
+
For detailed instructions on data preparation, training, and evaluation, please refer to the [official GitHub repository](https://github.com/feats-ai/feats).
|
| 32 |
+
|
| 33 |
+
## Citation
|
| 34 |
+
|
| 35 |
+
If you use this dataset or the associated code in your research, please cite:
|
| 36 |
+
|
| 37 |
+
```bibtex
|
| 38 |
+
@misc{helmut_dziarski2025feats,
|
| 39 |
+
title={Learning Force Distribution Estimation for the GelSight Mini Optical Tactile Sensor Based on Finite Element Analysis},
|
| 40 |
+
author={Erik Helmut and Luca Dziarski and Niklas Funk and Boris Belousov and Jan Peters},
|
| 41 |
+
year={2025},
|
| 42 |
+
eprint={2411.03315},
|
| 43 |
+
archivePrefix={arXiv},
|
| 44 |
+
primaryClass={cs.RO},
|
| 45 |
+
url={https://arxiv.org/abs/2411.03315},
|
| 46 |
+
}
|
| 47 |
+
```
|