Assignment 5

Andrew ID: Rohan Agarwal

Late Days used: 4

I implemented architectures for the classification and segmentation models inspired by the PointNet architecture.

Q1. Classification Model

Usage: python train.py --task cls --exp_name pointnet_cls
python eval_cls.py

Test Accuracy: 97.48%

Dataset distribution (total samples = 953):

category num samples
Chair 617
Lamp 102
Vase 234

Class-wise correctly classified examples:

Chair Lamp Vase

Class-wise misclassified examples:

Chair Lamp Vase

The two misclassified examples of chairs shown have shapes less representative of a typical chair (missing base and front legs and unusually long back rest). The second chair being mistaken for a lamps makes sense as lamps usually have a taller structure. Vases and lamps have rather diverse distributions with high variance in shapes and design and the network can confuse one with the other. Reasonably enough, it is also easier for the network to classify taller lamps correctly.

Top best and worst performing examples by confidence score:

Top 5 success cases by predicted confidence Top 5 failures cases by predicted confidence

Q2. Segmentation Model

Usage: python train.py --task seg --exp_name pointnet_seg
python eval_seg.py

Test Accuracy: 89.95%

Top best and worst performing examples by accuracy:

Top 5 best performing cases - prediction Top 5 best performing cases - GT Top 5 worst performing cases - prediction Top 5 worst performing cases - GT

Q3. Robustness Analysis

I experimented with rotating the input point cloud and reducing the number of points in it during test time.

Accuracy table (Rotation):

rotation classification segmentation
97.48% 89.95%
60° 37.56% 50.76%
120° 21.19% 33.45%
180° 47.32% 32.93%

Accuracy table (Varying number of test data points):

num points classification segmentation
10000 97.48% 89.95%
5000 97.16% 89.89%
1000 97.16% 88.94%
100 94.33% 81.24%

Classification model:

Rotation:

Usage: python eval_cls.py --exp_name cls --rotate --rot_angle 60

no rotation rotation 60° rotation 120° rotation 180°

Varying number of points

Usage: python eval_cls.py --exp_name cls --change_n_points --num_points 100

num points 10000 num points 5000 num points 1000 num points 100

Segmentation Model

Rotation

Usage: python eval_seg.py --exp_name seg --rotate --rot_angle 60

rotation 60° predictions rotation 60° GT rotation 120° predictions rotation 120° GT rotation 180° predictions rotation 180° GT

Varying number of points

Usage: python eval_seg.py --exp_name seg --change_n_points --num_points 100

num points 100 predictions num points 100 GT num points 1000 predictions num points 1000 GT num points 5000 predictions num points 5000 GT