├── .gitignore ├── LICENSE ├── Pre_Weather ├── GetData.py ├── GetModel.py ├── Main.py ├── Model.pkl ├── ProcessData.py ├── Write.py ├── weather_test.csv ├── weather_train_train.csv └── weather_train_valid.csv ├── README.md └── result.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/LICENSE -------------------------------------------------------------------------------- /Pre_Weather/GetData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/Pre_Weather/GetData.py -------------------------------------------------------------------------------- /Pre_Weather/GetModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/Pre_Weather/GetModel.py -------------------------------------------------------------------------------- /Pre_Weather/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/Pre_Weather/Main.py -------------------------------------------------------------------------------- /Pre_Weather/Model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/Pre_Weather/Model.pkl -------------------------------------------------------------------------------- /Pre_Weather/ProcessData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/Pre_Weather/ProcessData.py -------------------------------------------------------------------------------- /Pre_Weather/Write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/Pre_Weather/Write.py -------------------------------------------------------------------------------- /Pre_Weather/weather_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/Pre_Weather/weather_test.csv -------------------------------------------------------------------------------- /Pre_Weather/weather_train_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/Pre_Weather/weather_train_train.csv -------------------------------------------------------------------------------- /Pre_Weather/weather_train_valid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/Pre_Weather/weather_train_valid.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/README.md -------------------------------------------------------------------------------- /result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nambers/PYWeatherForecast/HEAD/result.jpg --------------------------------------------------------------------------------