Kylen Solvik
Kylen Solvik
Using this issue to document the current state of the package, remaining loose ends, and possible paths for enhancements. ### 1. Current state of the package The package has all...
Started out as fixes to make sqgturb work, but that uncovered some other issues that I fixed along the way. In all: - sqgturb and pyqg_jax now produce xarray datasets...
RC model object has possibly redundant/confusing methods: - predict - forecast - generate - update We should remove if redundant or clarify the names if not.
Solves #51 - Removed predict() method from reservoir computing model to avoid confusion with forecast() - Renamed generate() to readin() to avoid confusion with data generators. This method applies Win...
pyqg (https://github.com/pyqg/pyqg) is no longer under active maintenance, although there has been some new discussion recently: https://github.com/pyqg/pyqg/issues/330 Up until recently, the install failed without doing some special work-arounds, which made...
QGS package was recently updated to 1.0.0. Awesome that it's still being developed, but it's breaking tests currently. Pinned it at 0.2.8 for now, but need to dive into the...
**The problem** In theory, we support both linear and non-linear observation operators: - Linear operators (H) must be array-like. These are what we have been using in all our examples,...
Applying obs_loc_mask slows down computation by a factor of 2-3x. Used a temporary fix with conditional statement to speed up regular obs case, but irregular obs still slower. See #47