├── .flake8 ├── .gitignore ├── LICENSE ├── README.md ├── pwv ├── era5.py ├── main.py ├── predict.py ├── prepare.py ├── secret.toml.template ├── static │ └── station_info.csv └── verify.py ├── requirements ├── common.txt ├── cpu.txt ├── dev.txt └── gpu.txt ├── scheduler.py └── setup.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/README.md -------------------------------------------------------------------------------- /pwv/era5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/pwv/era5.py -------------------------------------------------------------------------------- /pwv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/pwv/main.py -------------------------------------------------------------------------------- /pwv/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/pwv/predict.py -------------------------------------------------------------------------------- /pwv/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/pwv/prepare.py -------------------------------------------------------------------------------- /pwv/secret.toml.template: -------------------------------------------------------------------------------- 1 | cds_api_key = '' -------------------------------------------------------------------------------- /pwv/static/station_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/pwv/static/station_info.csv -------------------------------------------------------------------------------- /pwv/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/pwv/verify.py -------------------------------------------------------------------------------- /requirements/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/requirements/common.txt -------------------------------------------------------------------------------- /requirements/cpu.txt: -------------------------------------------------------------------------------- 1 | -r common.txt 2 | onnxruntime -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | -r common.txt 2 | ipython 3 | ipdb -------------------------------------------------------------------------------- /requirements/gpu.txt: -------------------------------------------------------------------------------- 1 | -r common.txt 2 | onnxruntime-gpu -------------------------------------------------------------------------------- /scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/scheduler.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clarmy/pangu-weather-verify/HEAD/setup.py --------------------------------------------------------------------------------