From 8e5c90481a5d8b73f51be2270cd86880f8839484 Mon Sep 17 00:00:00 2001 From: Xu Ma <1007540910@qq.com> Date: Mon, 4 Oct 2021 12:15:43 -0400 Subject: [PATCH] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a0aecce..25a46b5 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ pip install pointnet2_ops_lib/. ``` ## Classification ModelNet40 -The dataset will be automatically downloaded, directly run following command to train +The dataset will be automatically downloaded, run following command to train ```bash # train pointMLP python main.py --model pointMLP @@ -24,6 +24,13 @@ python main.py --model pointMLP 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. + +To conduct voting experiments, run +```bash +# please modify the msg accrodingly +python voting.py --model pointMLP --msg demo +``` ## Classification ScanObjectNN