Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1.21 KB

README.md

File metadata and controls

53 lines (34 loc) · 1.21 KB

Bris inference

This is a package to run MET Norway's data-driven model Bris, which is based on the Anemoi framework.

Features

  • Model and data-parallel inference
  • Multi encoder/decoder
  • Time interpolation

Documentation

See Wiki

Requirements

  • udunits2 library. On ubuntu available as libudunits2-0

Install

Locally for development

python3 -m venv venv && source venv/bin/activate
pip install -e .

How to run Bris

bris --config config.yaml

How to run tests

pip install ".[tests]"
tox

List all tests, and run a single one:

$ tox -a
py311
py312
ruffcheck
typing
bandit
prospector
ruffformat

$ tox -e bandit

Code borrowed from Anemoi project