├── README.md ├── Tactile-driven image stylization ├── LICENSE ├── README.md ├── data │ ├── __init__.py │ ├── base_dataset.py │ ├── image_folder.py │ ├── single_dataset.py │ ├── singleimage_dataset.py │ ├── template_dataset.py │ ├── touch_and_go_dataset.py │ └── unaligned_dataset.py ├── datasets │ └── touch_and_go │ │ └── generate_train_test.py ├── environment.yaml ├── models │ ├── TDIS_model.py │ ├── __init__.py │ ├── base_model.py │ ├── networks.py │ ├── patchnce.py │ └── template_model.py ├── options │ ├── __init__.py │ ├── base_options.py │ ├── test_options.py │ └── train_options.py ├── script │ ├── test.sh │ └── train.sh ├── test.py ├── train.py └── util │ ├── __init__.py │ ├── get_data.py │ ├── html.py │ ├── image_pool.py │ ├── util.py │ └── visualizer.py ├── Visuo-tactile contrastive learning ├── LICENSE ├── LinearProbing_touch.py ├── NCE │ ├── NCEAverage.py │ ├── NCECriterion.py │ ├── __init__.py │ └── alias_multinomial.py ├── README.md ├── dataset.py ├── dataset │ ├── pretrain.txt │ ├── test.txt │ ├── test_rough.txt │ ├── train.txt │ └── train_rough.txt ├── models │ ├── LinearModel.py │ └── resnet.py ├── requirements.txt ├── script │ ├── cmc_touch18.sh │ ├── cmc_touch50.sh │ ├── hard_cmc_touch18.sh │ ├── material_cmc_touch18.sh │ └── rough_cmc_touch18.sh ├── train_CMC_touch.py └── util.py └── imgs └── teaser.jpg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/README.md -------------------------------------------------------------------------------- /Tactile-driven image stylization/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/LICENSE -------------------------------------------------------------------------------- /Tactile-driven image stylization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/README.md -------------------------------------------------------------------------------- /Tactile-driven image stylization/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/data/__init__.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/data/base_dataset.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/data/image_folder.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/data/single_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/data/single_dataset.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/data/singleimage_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/data/singleimage_dataset.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/data/template_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/data/template_dataset.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/data/touch_and_go_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/data/touch_and_go_dataset.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/data/unaligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/data/unaligned_dataset.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/datasets/touch_and_go/generate_train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/datasets/touch_and_go/generate_train_test.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/environment.yaml -------------------------------------------------------------------------------- /Tactile-driven image stylization/models/TDIS_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/models/TDIS_model.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/models/__init__.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/models/base_model.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/models/networks.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/models/patchnce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/models/patchnce.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/models/template_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/models/template_model.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/options/__init__.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/options/base_options.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/options/test_options.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/options/train_options.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/script/test.sh -------------------------------------------------------------------------------- /Tactile-driven image stylization/script/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/script/train.sh -------------------------------------------------------------------------------- /Tactile-driven image stylization/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/test.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/train.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/util/__init__.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/util/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/util/get_data.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/util/html.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/util/image_pool.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/util/util.py -------------------------------------------------------------------------------- /Tactile-driven image stylization/util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Tactile-driven image stylization/util/visualizer.py -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/LICENSE -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/LinearProbing_touch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/LinearProbing_touch.py -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/NCE/NCEAverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/NCE/NCEAverage.py -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/NCE/NCECriterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/NCE/NCECriterion.py -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/NCE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/NCE/alias_multinomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/NCE/alias_multinomial.py -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/README.md -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/dataset.py -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/dataset/pretrain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/dataset/pretrain.txt -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/dataset/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/dataset/test.txt -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/dataset/test_rough.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/dataset/test_rough.txt -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/dataset/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/dataset/train.txt -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/dataset/train_rough.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/dataset/train_rough.txt -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/models/LinearModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/models/LinearModel.py -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/models/resnet.py -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/requirements.txt -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/script/cmc_touch18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/script/cmc_touch18.sh -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/script/cmc_touch50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/script/cmc_touch50.sh -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/script/hard_cmc_touch18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/script/hard_cmc_touch18.sh -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/script/material_cmc_touch18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/script/material_cmc_touch18.sh -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/script/rough_cmc_touch18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/script/rough_cmc_touch18.sh -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/train_CMC_touch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/train_CMC_touch.py -------------------------------------------------------------------------------- /Visuo-tactile contrastive learning/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/Visuo-tactile contrastive learning/util.py -------------------------------------------------------------------------------- /imgs/teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredfyyang/Touch-and-Go/HEAD/imgs/teaser.jpg --------------------------------------------------------------------------------