├── Config.py ├── README.md ├── model.py ├── requirements.txt ├── sample_imgs ├── GAN.png ├── Lstm.png ├── real1.jpg ├── real2.jpg ├── real3.jpg └── real4.jpg ├── train_GAN.py ├── train_lstm.py └── watch_data.py /Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/Config.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/README.md -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_imgs/GAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/sample_imgs/GAN.png -------------------------------------------------------------------------------- /sample_imgs/Lstm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/sample_imgs/Lstm.png -------------------------------------------------------------------------------- /sample_imgs/real1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/sample_imgs/real1.jpg -------------------------------------------------------------------------------- /sample_imgs/real2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/sample_imgs/real2.jpg -------------------------------------------------------------------------------- /sample_imgs/real3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/sample_imgs/real3.jpg -------------------------------------------------------------------------------- /sample_imgs/real4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/sample_imgs/real4.jpg -------------------------------------------------------------------------------- /train_GAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/train_GAN.py -------------------------------------------------------------------------------- /train_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/train_lstm.py -------------------------------------------------------------------------------- /watch_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docShen/Satellite-Image-Prediction-Relying-on-GAN-and-LSTM-Neural-Networks/HEAD/watch_data.py --------------------------------------------------------------------------------