├── Agricultural land.png ├── README.md ├── __pycache__ ├── config.cpython-35.pyc ├── config.cpython-37.pyc ├── main.cpython-35.pyc └── predict.cpython-35.pyc ├── cat_to_name.json ├── combine.py ├── config.py ├── cut.py ├── main.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-37.pyc │ ├── alexnet.cpython-35.pyc │ ├── alexnet.cpython-37.pyc │ ├── densenet.cpython-35.pyc │ ├── densenet.cpython-37.pyc │ ├── googlenet.cpython-35.pyc │ ├── googlenet.cpython-37.pyc │ ├── inception.cpython-35.pyc │ ├── inception.cpython-37.pyc │ ├── mnasnet.cpython-35.pyc │ ├── mnasnet.cpython-37.pyc │ ├── mobilenet.cpython-35.pyc │ ├── mobilenet.cpython-37.pyc │ ├── resnet.cpython-35.pyc │ ├── resnet.cpython-37.pyc │ ├── shufflenetv2.cpython-35.pyc │ ├── shufflenetv2.cpython-37.pyc │ ├── squeezenet.cpython-35.pyc │ ├── squeezenet.cpython-37.pyc │ ├── utils.cpython-35.pyc │ ├── utils.cpython-37.pyc │ ├── vgg.cpython-35.pyc │ └── vgg.cpython-37.pyc ├── _utils.py ├── alexnet.py ├── densenet.py ├── googlenet.py ├── inception.py ├── mnasnet.py ├── mobilenet.py ├── resnet.py ├── shufflenetv2.py ├── squeezenet.py ├── utils.py └── vgg.py ├── predict.py └── trained_models └── data_record.pth /Agricultural land.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/Agricultural land.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/config.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/__pycache__/config.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/main.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/__pycache__/main.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/predict.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/__pycache__/predict.cpython-35.pyc -------------------------------------------------------------------------------- /cat_to_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/cat_to_name.json -------------------------------------------------------------------------------- /combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/combine.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/config.py -------------------------------------------------------------------------------- /cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/cut.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/alexnet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/alexnet.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/alexnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/alexnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/densenet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/densenet.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/densenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/densenet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/googlenet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/googlenet.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/googlenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/googlenet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/inception.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/inception.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/inception.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/inception.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/mnasnet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/mnasnet.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/mnasnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/mnasnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/mobilenet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/mobilenet.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/mobilenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/mobilenet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/resnet.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/resnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/shufflenetv2.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/shufflenetv2.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/shufflenetv2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/shufflenetv2.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/squeezenet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/squeezenet.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/squeezenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/squeezenet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/vgg.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/__pycache__/vgg.cpython-37.pyc -------------------------------------------------------------------------------- /models/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/_utils.py -------------------------------------------------------------------------------- /models/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/alexnet.py -------------------------------------------------------------------------------- /models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/densenet.py -------------------------------------------------------------------------------- /models/googlenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/googlenet.py -------------------------------------------------------------------------------- /models/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/inception.py -------------------------------------------------------------------------------- /models/mnasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/mnasnet.py -------------------------------------------------------------------------------- /models/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/mobilenet.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/shufflenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/shufflenetv2.py -------------------------------------------------------------------------------- /models/squeezenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/squeezenet.py -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/utils.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/models/vgg.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/predict.py -------------------------------------------------------------------------------- /trained_models/data_record.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUYang99/Pytorch_Remote-Sensing-Image-Classification/HEAD/trained_models/data_record.pth --------------------------------------------------------------------------------