├── README.md ├── training_method_1 ├── HSI_branch.py ├── HSI_test_branch.py ├── README ├── print_map.py ├── read_record.py ├── test_hsi.py └── train_hsi.py ├── training_method_2 ├── HSI_branch.py ├── HSI_test_branch.py ├── README ├── print_map.py ├── read_record.py ├── test_hsi.py └── train_hsi.py └── training_method_3 ├── HSI_branch.py ├── HSI_test_branch.py ├── README ├── print_map.py ├── read_record.py ├── test_hsi.py ├── train_hsi.py └── train_hsi_finetune.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/README.md -------------------------------------------------------------------------------- /training_method_1/HSI_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_1/HSI_branch.py -------------------------------------------------------------------------------- /training_method_1/HSI_test_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_1/HSI_test_branch.py -------------------------------------------------------------------------------- /training_method_1/README: -------------------------------------------------------------------------------- 1 | # 第一种训练方式 2 | -------------------------------------------------------------------------------- /training_method_1/print_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_1/print_map.py -------------------------------------------------------------------------------- /training_method_1/read_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_1/read_record.py -------------------------------------------------------------------------------- /training_method_1/test_hsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_1/test_hsi.py -------------------------------------------------------------------------------- /training_method_1/train_hsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_1/train_hsi.py -------------------------------------------------------------------------------- /training_method_2/HSI_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_2/HSI_branch.py -------------------------------------------------------------------------------- /training_method_2/HSI_test_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_2/HSI_test_branch.py -------------------------------------------------------------------------------- /training_method_2/README: -------------------------------------------------------------------------------- 1 | ## 第二种训练方式 2 | -------------------------------------------------------------------------------- /training_method_2/print_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_2/print_map.py -------------------------------------------------------------------------------- /training_method_2/read_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_2/read_record.py -------------------------------------------------------------------------------- /training_method_2/test_hsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_2/test_hsi.py -------------------------------------------------------------------------------- /training_method_2/train_hsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_2/train_hsi.py -------------------------------------------------------------------------------- /training_method_3/HSI_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_3/HSI_branch.py -------------------------------------------------------------------------------- /training_method_3/HSI_test_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_3/HSI_test_branch.py -------------------------------------------------------------------------------- /training_method_3/README: -------------------------------------------------------------------------------- 1 | ## 第三中训练方式 2 | -------------------------------------------------------------------------------- /training_method_3/print_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_3/print_map.py -------------------------------------------------------------------------------- /training_method_3/read_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_3/read_record.py -------------------------------------------------------------------------------- /training_method_3/test_hsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_3/test_hsi.py -------------------------------------------------------------------------------- /training_method_3/train_hsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_3/train_hsi.py -------------------------------------------------------------------------------- /training_method_3/train_hsi_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/computervisionlearner/Hyperspectral-image-classification/HEAD/training_method_3/train_hsi_finetune.py --------------------------------------------------------------------------------