Assignmnet 5

Name: Neha Boloor, Andrew ID: nboloor

Number of late days used: 0

Download zip file (~2GB) from https://drive.google.com/file/d/1wXOgwM_rrEYJfelzuuCkRfMmR0J7vLq_/view?usp=sharing. Put the unzipped data folder under root directory. There are two folders (cls and seg) corresponding to two tasks, each of which contains .npy files for training and testing.

Q1. Classification Model (40 points)

Run python train.py --task cls --load_checkpoint best_model --exp_name cls to train the model, and python eval_cls.py --load_checkpoint best_model --exp_name cls for evaluation.

Q2. Segmentation Model (40 points)

Run python train.py --task seg --load_checkpoint best_model --exp_name seg -- to train the model, and python eval_seg.py --load_checkpoint best_model --exp_name cls for evaluation.

Q3. Robustness Analysis (20 points)

I have conducted 2 experiments to analyze the robustness of your learned model for both cls and seg task.

  1. During evaluation we add some noise to the test point cloud i.e. adding jitter to the position of each point by a Gaussian noise with zero mean and varying standard deviation. (sd values tried include 0.01, 0.02, 0.05, 0.3)
  2. Ex: On adding a Gaussian noise with 0 mean and sd = 0.02 (in red) this is what the test sample (in green) gets modified to: Run the following for this : python eval_cls.py --task cls --add_noise True --load_checkpoint best_model --exp_name cls_noise
    Task TypeSDTest Accuracy
    cls0.010.974816369359916
    cls0.020.9664218258132214
    cls0.050.919202518363064
    cls0.30.310598111227702
    seg0.010.9024589951377634
    seg0.020.8919053484602917
    seg0.050.8352265802269043
    seg0.30.5454905996758509
    This tells us that small corruptions or extra noise points in the input pointcloud are not likely to change the output of our network for a small sd value.
  3. Second experiment included varying the input number of points per object.(Values for num_points experimented with include 10,100,1000,5000,10000) Run the following for this : python eval_seg.py --task seg --add_noise True --load_checkpoint best_model --exp_name seg_noise
Task TypeNumber of PointsTest Accuracy
cls100.24763903462749212
cls1000.8583420776495279
cls10000.9706190975865687
cls50000.974816369359916
cls100000.9758656873032528
seg100.7824959481361426
seg1000.8563371150729335
seg10000.9105705024311184
seg50000.9079329011345219
seg100000.9065933549432739
The robustness is gained in analogy to the sparsity principle in machine learning models. Intuitively, our network learns to summarize a shape by a sparse set of key points (even about 100-1000 points gives good performance).