-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
329 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,25 @@ | ||
name: Run pre-commit job | ||
name: lint | ||
|
||
on: | ||
push: | ||
# trigger on pushes to any branch, but not main | ||
push: | ||
branches-ignore: | ||
- main | ||
# and also on PRs to main | ||
pull_request: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
- main | ||
|
||
jobs: | ||
pre-commit-job: | ||
pre-commit-job: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
strategy: | ||
matrix: | ||
python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
- name: Install pre-commit hooks | ||
run: | | ||
pip install torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 \ | ||
--index-url https://download.pytorch.org/whl/cpu | ||
pip install -r requirements.txt | ||
pip install pyg-lib==0.2.0 torch-scatter==2.1.1 torch-sparse==0.6.17 \ | ||
torch-cluster==1.6.1 torch-geometric==2.3.1 \ | ||
-f https://pytorch-geometric.com/whl/torch-2.0.1+cpu.html | ||
- name: Run pre-commit hooks | ||
run: | | ||
pre-commit run --all-files | ||
python-version: ${{ matrix.python-version }} | ||
- uses: pre-commit/action@v2.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,37 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-ast | ||
- id: check-case-conflict | ||
- id: check-docstring-first | ||
- id: check-symlinks | ||
- id: check-toml | ||
- id: check-yaml | ||
- id: debug-statements | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
- repo: local | ||
- id: check-ast | ||
- id: check-case-conflict | ||
- id: check-docstring-first | ||
- id: check-symlinks | ||
- id: check-toml | ||
- id: check-yaml | ||
- id: debug-statements | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
|
||
- repo: https://github.com/codespell-project/codespell | ||
rev: v2.2.6 | ||
hooks: | ||
- id: codespell | ||
name: codespell | ||
- id: codespell | ||
description: Check for spelling errors | ||
language: system | ||
entry: codespell | ||
- repo: local | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 22.3.0 | ||
hooks: | ||
- id: black | ||
name: black | ||
- id: black | ||
description: Format Python code | ||
language: system | ||
entry: black | ||
types_or: [python, pyi] | ||
- repo: local | ||
|
||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.12.0 | ||
hooks: | ||
- id: isort | ||
name: isort | ||
- id: isort | ||
description: Group and sort Python imports | ||
language: system | ||
entry: isort | ||
types_or: [python, pyi, cython] | ||
- repo: local | ||
|
||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 7.0.0 | ||
hooks: | ||
- id: flake8 | ||
name: flake8 | ||
- id: flake8 | ||
description: Check Python code for correctness, consistency and adherence to best practices | ||
language: system | ||
entry: flake8 --max-line-length=80 --ignore=E203,F811,I002,W503 | ||
types: [python] | ||
- repo: local | ||
hooks: | ||
- id: pylint | ||
name: pylint | ||
entry: pylint -rn -sn | ||
language: system | ||
types: [python] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [unreleased](https://github.com/joeloskarsson/neural-lam/compare/v0.1.0...HEAD) | ||
|
||
### Added | ||
|
||
- Replaced `constants.py` with `data_config.yaml` for data configuration management | ||
[\#31](https://github.com/joeloskarsson/neural-lam/pull/31) | ||
@sadamov | ||
|
||
- new metrics (`nll` and `crps_gauss`) and `metrics` submodule, stddiv output option | ||
[c14b6b4](https://github.com/joeloskarsson/neural-lam/commit/c14b6b4323e6b56f1f18632b6ca8b0d65c3ce36a) | ||
@joeloskarsson | ||
|
||
- ability to "watch" metrics and log | ||
[c14b6b4](https://github.com/joeloskarsson/neural-lam/commit/c14b6b4323e6b56f1f18632b6ca8b0d65c3ce36a) | ||
@joeloskarsson | ||
|
||
- pre-commit setup for linting and formatting | ||
[\#6](https://github.com/joeloskarsson/neural-lam/pull/6), [\#8](https://github.com/joeloskarsson/neural-lam/pull/8) | ||
@sadamov, @joeloskarsson | ||
|
||
### Changed | ||
|
||
- Updated scripts and modules to use `data_config.yaml` instead of `constants.py` | ||
[\#31](https://github.com/joeloskarsson/neural-lam/pull/31) | ||
@sadamov | ||
|
||
- Added new flags in `train_model.py` for configuration previously in `constants.py` | ||
[\#31](https://github.com/joeloskarsson/neural-lam/pull/31) | ||
@sadamov | ||
|
||
- moved batch-static features ("water cover") into forcing component return by `WeatherDataset` | ||
[\#13](https://github.com/joeloskarsson/neural-lam/pull/13) | ||
@joeloskarsson | ||
|
||
- change validation metric from `mae` to `rmse` | ||
[c14b6b4](https://github.com/joeloskarsson/neural-lam/commit/c14b6b4323e6b56f1f18632b6ca8b0d65c3ce36a) | ||
@joeloskarsson | ||
|
||
- change RMSE definition to compute sqrt after all averaging | ||
[\#10](https://github.com/joeloskarsson/neural-lam/pull/10) | ||
@joeloskarsson | ||
|
||
### Removed | ||
|
||
- `WeatherDataset(torch.Dataset)` no longer returns "batch-static" component of | ||
training item (only `prev_state`, `target_state` and `forcing`), the batch static features are | ||
instead included in forcing | ||
[\#13](https://github.com/joeloskarsson/neural-lam/pull/13) | ||
@joeloskarsson | ||
|
||
### Maintenance | ||
|
||
- simplify pre-commit setup by 1) reducing linting to only cover static | ||
analysis excluding imports from external dependencies (this will be handled | ||
in build/test cicd action introduced later), 2) pinning versions of linting | ||
tools in pre-commit config (and remove from `requirements.txt`) and 3) using | ||
github action to run pre-commit. | ||
[\#29](https://github.com/mllam/neural-lam/pull/29) | ||
@leifdenby | ||
|
||
|
||
## [v0.1.0](https://github.com/joeloskarsson/neural-lam/releases/tag/v0.1.0) | ||
|
||
First tagged release of `neural-lam`, matching Oskarsson et al 2023 publication | ||
(<https://arxiv.org/abs/2309.17370>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.