├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── algorithms ├── auxil │ ├── mydata.py │ └── mymetrics.py ├── cnn1d.py ├── cnn2d.py ├── cnn3d.py ├── mlp.py ├── mlr.py ├── pretrain_imagenet_cnn.py ├── recurrent.py ├── rf.py ├── svm.py └── transfer_learning.py ├── github_history ├── .gitignore ├── frameworks.py └── history_ev.py └── images └── paviaclasf.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/auxil/mydata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/auxil/mydata.py -------------------------------------------------------------------------------- /algorithms/auxil/mymetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/auxil/mymetrics.py -------------------------------------------------------------------------------- /algorithms/cnn1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/cnn1d.py -------------------------------------------------------------------------------- /algorithms/cnn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/cnn2d.py -------------------------------------------------------------------------------- /algorithms/cnn3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/cnn3d.py -------------------------------------------------------------------------------- /algorithms/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/mlp.py -------------------------------------------------------------------------------- /algorithms/mlr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/mlr.py -------------------------------------------------------------------------------- /algorithms/pretrain_imagenet_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/pretrain_imagenet_cnn.py -------------------------------------------------------------------------------- /algorithms/recurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/recurrent.py -------------------------------------------------------------------------------- /algorithms/rf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/rf.py -------------------------------------------------------------------------------- /algorithms/svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/svm.py -------------------------------------------------------------------------------- /algorithms/transfer_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/algorithms/transfer_learning.py -------------------------------------------------------------------------------- /github_history/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /github_history/frameworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/github_history/frameworks.py -------------------------------------------------------------------------------- /github_history/history_ev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/github_history/history_ev.py -------------------------------------------------------------------------------- /images/paviaclasf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaut/hyperspectral_deeplearning_review/HEAD/images/paviaclasf.png --------------------------------------------------------------------------------