--- license: mit language: - en task_categories: - zero-shot-image-classification - zero-shot-classification - feature-extraction - image-feature-extraction - tabular-classification - tabular-regression - depth-estimation tags: - tactile - robotics pretty_name: Sensor-Invariant Tactile Representation size_categories: - 1M renders.zip rm renders_part_aa renders_part_ab # Remove the split files ``` 2. **Unzip the merged file:** ```bash unzip renders.zip -d your_desired_directory rm renders.zip ``` ### Real-World Datasets (Classification & Pose Estimation) Download the classification dataset: ```bash wget https://huggingface.co/datasets/hgupt3/sitr_dataset/resolve/main/classification_dataset.zip unzip classification_dataset.zip -d your_desired_directory rm classification_dataset.zip ``` Download the pose estimation dataset: ```bash wget https://huggingface.co/datasets/hgupt3/sitr_dataset/resolve/main/pose_dataset.zip unzip pose_dataset.zip -d your_desired_directory rm pose_dataset.zip ``` Each dataset contains: - `train_set/` (80% of the data) - `test_set/` (20% of the data) --- ## File Structure ### 1. Simulated Tactile Dataset ``` data_root/ ├── sensor_0000/ │ ├── calibration/ # Calibration images │ │ ├── 0000.png # Background image │ │ ├── 0001.png │ │ └── ... │ ├── samples/ # Tactile sample images │ │ ├── 0000.png │ │ ├── 0001.png │ │ └── ... │ ├── dmaps/ # (Optional) Depth maps │ │ ├── 0000.npy │ │ └── ... │ └── norms/ # (Optional) Surface normals │ ├── 0000.npy │ └── ... ├── sensor_0001/ └── ... ``` ### 2. Classification Dataset Each of the `train_set/` and `test_set/` directories follows this structure: ``` train_set/ (or test_set/) ├── sensor_0000/ │ ├── calibration/ # Calibration images │ ├── samples/ # Organized by class │ │ ├── class_0000/ │ │ │ ├── 0000.png │ │ │ └── ... │ │ ├── class_0001/ │ │ │ ├── 0000.png │ │ │ └── ... │ │ └── ... ├── sensor_0001/ └── ... ``` ### 3. Pose Estimation Dataset Each of the `train_set/` and `test_set/` directories is structured as follows: ``` train_set/ (or test_set/) ├── sensor_0000/ │ ├── calibration/ # Calibration images │ ├── samples/ # Tactile sample images │ │ ├── 0000.png │ │ ├── 0001.png │ │ └── ... │ └── locations/ # Pose/Location data │ ├── 0000.npy │ ├── 0001.npy │ └── ... ├── sensor_0001/ └── ... ``` --- ## Citation If you use this dataset or model weights in your research, please cite: ```bibtex @inproceedings{ gupta2025sensorinvariant, title={Sensor-Invariant Tactile Representation}, author={Harsh Gupta and Yuchen Mo and Shengmiao Jin and Wenzhen Yuan}, booktitle={The Thirteenth International Conference on Learning Representations}, year={2025}, } ``` --- ## License This dataset and model weights are licensed under the MIT License. See the LICENSE file for details. If you have any questions or need further clarification, please feel free to reach out.