[16-889] Assignment 5 Submission: Aarush Gupta (aarushg3)

Late days used: 1

1 late days image


Q1. Classification Model (40 points)

Q2. Segmentation Model (40 points)

Q3. Robustness Analysis (20 points)

Changing the number of points

Number of points Classification Test Acc. Segmentation Test Acc.
10000 (original expt.) 97.38% 87.81%
1000 97.06% 89.89%
100 83.42% 81.35%
Angle of rotation Classification Test Acc. Segmentation Test Acc.
0 (original expt.) 97.38% 87.81%
30 53.62% 51.35%
60 78.69% 46.14%
90 39.76% 24.98%

For changing the number of points, I used the --num_points argument in the evaluation scripts and set it to 1000 and 100.

For rotating the point cloud, I used the look_at_view_transform from pytorch3d.renderer.cameras to obtain rotation matrices to rotate the points by a specified degress (specifically, set the elev argument to the degrees I wanted the point cloud to rotate). To actuallly rotate the point cloud tensors (shape: batch_size X number_of_points X 3), I used pt_tensor @ R[0].T.

Reducing the number of points from 10000 to 1000 doesn't have much of an effect on the accuracy. This makes sense as the global vector in the PointNet implementation has 1024 dimensions and can theoretically select a maximum of 1024 points to generate a global vector. But reducing the number of points further decreases the accuracy, which makes sense (with reasoning along similar lines as before).

Changing the angle of rotation has a monotonous adverse effect on the segmentation task, suggesting that the model is not robust to angular shifts in point clouds (which makes sense as I didn't have any priors in the model that'd make it rotation invariant). However, the accuracy on the classification task increases slightly when increasing the rotation angle from 30 degrees to 60 degrees, but otherwise decreases when rotation is increases further to 90 degrees.

Q4. Bonus Question - Locality (20 points)

For this part, I implemented a PointNet++ based classification model. Please refer to the code (cls_model_plus class in models.py) for details of the model.

I could train the model for 100 epochs only. The best accuracy I obtained in those epochs is 95.38 %. Final train loss value is 17.35.

Note that I've compared samples (IDs: 406, 944, 650) which have been misclassified by the PointNet based model.

Since the model was trained for 100 epochs only, slightly inferior accuracy is expected. Training the model for more, and having bigger cluster sizes would lead to better predictions (and hopefully correct predictions on some more samples which PointNet misclassified).