PointMLP/README.md

91 lines
2.8 KiB
Markdown
Raw Normal View History

2021-10-04 07:01:38 +00:00
# pointMLP-pytorch
Rethinking Network Design and Local Geometry in Point Cloud: A Simple Residual MLP Framework
2021-10-04 07:26:41 +00:00
2021-10-05 20:46:48 +00:00
<div align="center">
2021-10-05 22:13:18 +00:00
<img src="overview.pdf" width="650px" height="300px">
2021-10-05 20:46:48 +00:00
</div>
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.
2021-10-04 07:26:41 +00:00
2021-10-04 17:15:58 +00:00
## Pre-trained models
Please download the pre-trained models and log files here: [[anonymous google drive]](https://drive.google.com/drive/folders/1Jn9HNpPsrq-1XqSmOUtw4cwPMjsIiIpz?usp=sharing)
2021-10-04 07:26:41 +00:00
## Install
2021-10-04 07:48:33 +00:00
Please ensure that python3.7+ is installed. We suggest user use conda to create a new environment.
Install dependencies
```bash
2021-10-04 17:15:58 +00:00
pip install -r requirements.txt
2021-10-04 07:48:33 +00:00
```
Install CUDA kernels
```bash
pip install pointnet2_ops_lib/.
```
2021-10-04 07:26:41 +00:00
## Classification ModelNet40
2021-10-04 16:15:43 +00:00
The dataset will be automatically downloaded, run following command to train
2021-10-04 16:11:38 +00:00
```bash
# train pointMLP
python main.py --model pointMLP
# train pointMLP-elite
python main.py --model pointMLPElite
# please add other paramemters as you wish.
```
2021-10-04 16:15:43 +00:00
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.
To conduct voting experiments, run
```bash
# please modify the msg accrodingly
python voting.py --model pointMLP --msg demo
```
2021-10-04 16:11:38 +00:00
2021-10-04 07:26:41 +00:00
## Classification ScanObjectNN
2021-10-04 16:48:24 +00:00
- Make data folder and download the dataset
```bash
cd pointMLP-pytorch/classification_ScanObjectNN
mkdir data
cd data
wget http://103.24.77.34/scanobjectnn/h5_files.zip
unzip h5_files.zip
```
2021-10-04 17:15:58 +00:00
- Train pointMLP/pointMLPElite
2021-10-04 16:48:24 +00:00
```bash
# 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.
2021-10-04 17:15:58 +00:00
- To conduct voting experiments
2021-10-04 16:48:24 +00:00
```bash
# please modify the msg accrodingly
python voting.py --model pointMLP --msg demo
```
2021-10-04 07:26:41 +00:00
## Part segmentation
2021-10-04 16:48:24 +00:00
- Make data folder and download the dataset
```bash
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
```
2021-10-04 17:15:58 +00:00
- Train pointMLP
2021-10-04 16:48:24 +00:00
```bash
# train pointMLP
python main.py --model pointMLP
# please add other paramemters as you wish.
```