Kaggle Draper Satellite Chronology Dataset. In total there are 344 locations. Each location has 5 images. Total: 1720 images. For each location 3 images are used for Training and 2 images are used for Validation. Training: 1032 images. Validation: 688 images.
https://www.kaggle.com/c/draper-satellite-image-chronology
Look into Feature Extraction Folder first too see how to feature extract using Keras/Caffe.
Shows how to Finetune in Keras.
ResNet50finetune.py contains the abstracted network that needs to be finetuned. You will add the top layer.
myresnet50.py is exactly the same as ResNet50 from Keras but the mode for BatchNormalization is changed to 1.
How to Finetune in Caffe: http://cs231n.stanford.edu/slides/2016/winter1516_lecture12.pdf Starting from slide 11
- Contains code to use Random Forest for feature subselection
- Drawing from uniform distribution for feature subselection
- Concenating Feature sets together
How to plot the Validation Accuracy/Training loss using log.txt file. Used for Caffe.
Contains SVC classifier for UC Merced Test set.