Find a file
2022-02-16 01:40:12 -05:00
classification_ModelNet40 fix the std bug 2022-02-16 01:08:56 -05:00
classification_ScanObjectNN fix the std bug 2022-02-16 01:08:56 -05:00
images add images 2022-02-15 21:29:11 -05:00
part_segmentation fix the std bug 2022-02-16 01:08:56 -05:00
pointnet2_ops_lib update 2021-10-04 03:25:18 -04:00
.gitignore update 2021-10-04 03:45:09 -04:00
LICENSE Initial commit 2021-10-04 03:01:38 -04:00
overview.pdf Add files via upload 2021-10-05 16:45:11 -04:00
overview.png Add files via upload 2021-10-05 16:49:00 -04:00
README.md Update README.md 2022-02-16 01:40:12 -05:00
requirements.txt update 2021-10-04 03:45:09 -04:00

Rethinking Network Design and Local Geometry in Point Cloud: A Simple Residual MLP Framework ICLR 2022

PWC PWC

Project Sites | arXiv | Primary contact: Xu Ma

Overview of one stage in PointMLP. Given an input point cloud, PointMLP progressively extract local features using residual point MLP blocks. In each stage, we first transform local point using a geometric affine module, then local points are are extracted before and after aggregation respectively. By repeating multiple stages, PointMLP progressively enlarge the receptive field and model entire point cloud geometric information.

BibTeX

@inproceedings{
    ma2022rethinking,
    title={Rethinking Network Design and Local Geometry in Point Cloud: A Simple Residual {MLP} Framework},
    author={Xu Ma and Can Qin and Haoxuan You and Haoxi Ran and Yun Fu},
    booktitle={International Conference on Learning Representations},
    year={2022},
    url={https://openreview.net/forum?id=3Pbra-_u76D}
}

Model Zoo

  • The codes/models/logs for submission version (without bug fixed) can be found here commit:d2b8dbaa.

  • On ModelNet40, fixed pointMLP achieves a result of 91.5% mAcc and 94.1% OA without voting, logs and pretrained models can be found [here].

  • On ScanObjectNN, fixed pointMLP achieves a result of 84.4% mAcc and 86.1% OA without voting, logs and pretrained models can be found [here].

  • Stay tuned. More elite versions and voting results will be uploaded.

News & Updates:

  • updated more pretrained models
  • double check the part seg utils
  • project page
  • update std bug (unstable testing in previous version)
  • paper/codes release

👉👉👉NOTE: The codes/models/logs for submission version (without bug fixed) can be found here commit:d2b8dbaa.

Install

# 1. clone this repo
git clone https://github.com/ma-xu/pointMLP-pytorch.git
cd pointMLP-pytorch

# 2. create a conda virtual environment and activate it
conda create -n pointmlp python=3.7 -y
conda activate pointmlp

# 3. install required libs, pytorch 1.8.1, torchvision 0.9.1, etc.
pip install -r requirements.txt

# 4. install CUDA kernels
pip install pointnet2_ops_lib/.

Useage

Classification ModelNet40

Train: The dataset will be automatically downloaded, run following command to train.

By default, it will create a fold named "checkpoints/{modelName}-{msg}-{randomseed}", which includes args.txt, best_checkpoint.pth, last_checkpoint.pth, log.txt, out.txt.

cd pointMLP-pytorch/classification_ModelNet40
# train pointMLP
python main.py --model pointMLP
# train pointMLP-elite
python main.py --model pointMLPElite
# please add other paramemters as you wish.

To conduct voting testing, run

# please modify the msg accrodingly
python voting.py --model pointMLP --msg demo

Classification ScanObjectNN

  • Make data folder and download the dataset
cd pointMLP-pytorch/classification_ScanObjectNN
mkdir data
cd data
wget http://103.24.77.34/scanobjectnn/h5_files.zip
unzip h5_files.zip
  • Train pointMLP/pointMLPElite
# train pointMLP
python main.py --model pointMLP
# train pointMLP-elite
python main.py --model pointMLPElite
# please add other paramemters as you wish.

By default, it will create a fold named "checkpoints/{modelName}-{msg}-{randomseed}", which includes args.txt, best_checkpoint.pth, last_checkpoint.pth, log.txt, out.txt.

Part segmentation

  • Make data folder and download the dataset
cd pointMLP-pytorch/part_segmentation
mkdir data
cd data
wget https://shapenet.cs.stanford.edu/media/shapenetcore_partanno_segmentation_benchmark_v0_normal.zip --no-check-certificate
unzip shapenetcore_partanno_segmentation_benchmark_v0_normal.zip
  • Train pointMLP
# train pointMLP
python main.py --model pointMLP
# please add other paramemters as you wish.

Acknowledgment

Our implementation is mainly based on the following codebases. We gratefully thank the authors for their wonderful works.

CurveNet, PAConv, GDANet, Pointnet2_PyTorch

LICENSE

PointMLP is under the Apache-2.0 license. Please contact the authors for commercial use.