CLAMP: Crowdsourcing a LArge-scale in-the-wild haptic dataset with an open-source device for Multimodal robot Perception
This is the codebase for the paper CLAMP: Crowdsourcing a LArge-scale in-the-wild haptic dataset with an open-source device for Multimodal robot Perception.
To download the CLAMP dataset, please go to this link. We house raw data and a filtered dataset with pre-computed vision predictions for each object in our dataset. If you want to directly train models on our data, just use CLAMP_dataset_filtered.npz.
- Clone the repository:
git clone https://github.com/empriselab/CLAMP.git
cd CLAMP- Create a Conda Environment for our repository
git submodule update --init --recursive- Create a Conda Environment for our repository
conda env create --file environment.yaml- Install the repository as a Python project
pip install -e .To train the haptic encoder, run:
python learning/haptic_learner.pyNext, to train the visuo-haptic model, first update the weights path of the haptic encoder you just trained.
You can do this in the constructor of the InceptionTimeWithMLP class, located in models/inception_time_with_mlp.py.
Then, run:
python learning/visuohaptic_learner.pyTo finetune the visuo-haptic model on robot data, first update the weights path of the visuo-haptic model you just trained.
You can do this in the set_model() function in learning/visuohaptic_learner.py.
Then, run:
python learning/robot_finetune.pyBe sure to specify the robot embodiment name of the data you want to train on. This codebase does not support cross-embodiment training, because the gripper embodiments are different and hence we featurize proprioception data from different robot embodiments, differently.
@inproceedings{thakkar2025clamp,
title={CLAMP: Crowdsourcing a LArge-scale in-the-wild haptic dataset with an open-source device for Multimodal robot Perception},
author={Thakkar Pranav N. and Sinha Shubhangi and Baijal Karan and Bian Yuhan (Anjelica) and Lackey Leah and Dodson Ben and Kong Heisen and Kwon Jueun and Li Amber and Hu Yifei and Rekoutis Alexios and Silver Tom and Bhattacharjee Tapomayukh},
booktitle = {Conference on Robot Learning (CoRL)},
year = {2025}
}