├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── pyproject.toml ├── src └── ai_models_panguweather │ ├── __init__.py │ └── model.py ├── tests ├── requirements.txt └── test_code.py └── utils └── pangu-gfs-input.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf-lab/ai-models-panguweather/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf-lab/ai-models-panguweather/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf-lab/ai-models-panguweather/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf-lab/ai-models-panguweather/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf-lab/ai-models-panguweather/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf-lab/ai-models-panguweather/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/ai_models_panguweather/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf-lab/ai-models-panguweather/HEAD/src/ai_models_panguweather/__init__.py -------------------------------------------------------------------------------- /src/ai_models_panguweather/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf-lab/ai-models-panguweather/HEAD/src/ai_models_panguweather/model.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | # Empty for now 2 | -------------------------------------------------------------------------------- /tests/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf-lab/ai-models-panguweather/HEAD/tests/test_code.py -------------------------------------------------------------------------------- /utils/pangu-gfs-input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecmwf-lab/ai-models-panguweather/HEAD/utils/pangu-gfs-input.py --------------------------------------------------------------------------------