LexieYang / SimpliMix

2 stars 0 forks source link

SimpliMix

Official implementation of SimpliMix: A Simplified Manifold Mixup for Few-shot Point Cloud Classification (accepted by WACV 2024).

Installation

This project is built upon the following environment:

The package requirements include:

Datasets

Train

Train protonet in the 5-way 1-shot setting on the ModelNet40 dataset:

python main.py --dataset modelnet40 --fs_head protonet --backbone dgcnn --k_way 5 --n_shot 1

Train protonet with simplimix in the 5-way 1-shot setting on the ModelNet40 dataset:

python main.py --dataset modelnet40 --fs_head protonet --backbone dgcnn_mm4 --k_way 5 --n_shot 1

Evaluate


python main.py --train False