16-889 Assignment 5

Name: Sri Nitchith Akula
Andrew ID: srinitca

1-Grace Days

Q1. Classification Model (40 points)

Run Command

python train.py --task cls python eval_cls.py

Test Accuracy

test accuracy: 0.9737670514165793

Correctly Predicted Ouputs

Idx Point Cloud GT Pred
0 Point Cloud chair chair
622 Point Cloud vase vase
720 Point Cloud lamp lamp

Wrongly Predicted Outputs

Idx Point Cloud GT Pred
445 Point Cloud chair vase
716 Point Cloud vase lamp
803 Point Cloud Lamp vase

Interpretation for the wrong predictions

Q2. Segmentation Model (40 points)

Run Command

python train.py --task seg python eval_seg.py

Test Accuracy

test accuracy: 0.9031212317666126
Idx GT Pred Acc
26 Point Cloud Point Cloud 0.4753
255 Point Cloud Point Cloud 0.4821
351 Point Cloud Point Cloud 0.4883
397 Point Cloud Point Cloud 0.9945
562 Point Cloud Point Cloud 0.994
471 Point Cloud Point Cloud 0.9951
297 Point Cloud Point Cloud 0.9982

Interpretation

Q3. Robustness Analysis (20 points)

Experiement 1 : Evaluation for different number of points

Classification

Run Command

python eval_cls.py --num_points xxxx
Num Points Accuracy
10000 0.973
5000 0.970
2000 0.969
1000 0.962
500 0.952
200 0.915
100 0.852
50 0.645
20 0.336
10 0.258

Segmentation

Run Command

python eval_seg.py --num_points xxxx
Num Points Accuracy
10000 0.903
5000 0.903
2000 0.903
1000 0.899
500 0.888
200 0.853
100 0.823
50 0.769
20 0.665
10 0.557

Interpretation

Experiement 2 : Evaluation for different rotations along z-axis (rotation in x-y plane)

Classification

Run Command

python eval_cls.py --rot xxxx
Rotation Angle (in degrees) Sample Point cloud Accuracy
0 Point Cloud 0.9737
30 Point Cloud 0.5341
60 Point Cloud 0.2612
90 Point Cloud 0.2444
120 Point Cloud 0.2235
150 Point Cloud 0.2539
180 Point Cloud 0.4837
210 Point Cloud 0.2665
240 Point Cloud 0.2444
270 Point Cloud 0.2413
300 Point Cloud 0.2623
330 Point Cloud 0.5414
360 Point Cloud 0.9737

Segmentation

Run Command

python eval_seg.py --rot xxxx
Rotation Angle (in degrees) Sample GT Sample Pred Accuracy
0 Point Cloud Point Cloud 0.903
30 Point Cloud Point Cloud 0.745
60 Point Cloud Point Cloud 0.600
90 Point Cloud Point Cloud 0.438
120 Point Cloud Point Cloud 0.319
150 Point Cloud Point Cloud 0.303
180 Point Cloud Point Cloud 0.334
210 Point Cloud Point Cloud 0.305
240 Point Cloud Point Cloud 0.364
270 Point Cloud Point Cloud 0.466
300 Point Cloud Point Cloud 0.557
330 Point Cloud Point Cloud 0.691
360 Point Cloud Point Cloud 0.903

Interpretation