Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MLAir
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esde
machine-learning
MLAir
Commits
1f90f0fe
Commit
1f90f0fe
authored
2 years ago
by
lukas leufen
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into 'develop'
Master See merge request
!502
parents
5011f903
c520802e
No related branches found
No related tags found
3 merge requests
!522
filter can now combine obs, forecast, and apriori for first iteration. Further...
,
!521
Resolve "release v2.4.0"
,
!502
Master
Pipeline
#128817
failed
2 years ago
Stage: test
Stage: docs
Stage: pages
Stage: deploy
Changes
4
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+3
-3
3 additions, 3 deletions
.gitlab-ci.yml
CHANGELOG.md
+24
-0
24 additions, 0 deletions
CHANGELOG.md
CI/Dockerfile
+3
-3
3 additions, 3 deletions
CI/Dockerfile
mlair/__init__.py
+1
-1
1 addition, 1 deletion
mlair/__init__.py
with
31 additions
and
7 deletions
.gitlab-ci.yml
+
3
−
3
View file @
1f90f0fe
...
...
@@ -46,10 +46,10 @@ tests (from scratch):
-
pip install --upgrade pip
-
zypper --no-gpg-checks addrepo https://download.opensuse.org/repositories/Application:Geo/15.4/Application:Geo.repo
-
zypper --no-gpg-checks refresh
-
zypper --no-gpg-checks --non-interactive install proj=
8.2.1
-
zypper --no-gpg-checks --non-interactive install geos=3.11.
0
-
zypper --no-gpg-checks --non-interactive install proj=
9.1.0
-
zypper --no-gpg-checks --non-interactive install geos=3.11.
1
-
zypper --no-gpg-checks --non-interactive install geos-devel=3.9.1
-
zypper --no-gpg-checks --non-interactive install libproj22=8.2.1
#
- zypper --no-gpg-checks --non-interactive install libproj22=8.2.1
-
zypper --no-gpg-checks --non-interactive install binutils libproj-devel gdal-devel
-
pip install -r requirements.txt
-
chmod +x ./CI/run_pytest.sh
...
...
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
24
−
0
View file @
1f90f0fe
# Changelog
All notable changes to this project will be documented in this file.
## v2.3.0 - 2022-11-25 - new models and plots
### general:
*
new model classes for ResNet and U-Net
*
new plots and variations of existing plots
### new features:
*
new model classes: ResNet (#419), U-Net (#423)
*
seasonal mse stack plot (#422)
*
new aggregated and line versions of Time Evolution Plot (#424, #427)
*
box-and-whisker plots are created for all error metrics (#431)
*
new split and frequency distribution versions of box-and-whisker plots for error metrics (#425, #434)
*
new evaluation metric: mean error / bias (#430)
*
conditional quantiles are now available for all competitors too (#435)
*
new map plot showing mse at locations (#432)
### technical:
*
speed up in model setup (#421)
*
bugfix for boundary trim in FIR filter (#418)
*
persistence is now calculated only on demand (#426)
*
block mse are stored locally in a file (#428)
*
fix issue with boolean variables not recognized by argparse (#417)
*
renaming of ahead labels (#436)
## v2.2.0 - 2022-08-16 - new data sources and python3.9
### general:
...
...
This diff is collapsed.
Click to expand it.
CI/Dockerfile
+
3
−
3
View file @
1f90f0fe
...
...
@@ -53,10 +53,10 @@ FROM base AS mlair
# install geo packages
RUN
zypper
--no-gpg-checks
addrepo https://download.opensuse.org/repositories/Application:Geo/15.4/Application:Geo.repo
RUN
zypper
--no-gpg-checks
refresh
RUN
zypper
--no-gpg-checks
--non-interactive
install
proj
=
8.2.1
RUN
zypper
--no-gpg-checks
--non-interactive
install
geos
=
3.1
0.3
RUN
zypper
--no-gpg-checks
--non-interactive
install
proj
=
9.1.0
RUN
zypper
--no-gpg-checks
--non-interactive
install
geos
=
3.1
1.1
RUN
zypper
--no-gpg-checks
--non-interactive
install
geos-devel
=
3.9.1
RUN
zypper
--no-gpg-checks
--non-interactive
install
libproj22
=
8.2.1
#
RUN zypper --no-gpg-checks --non-interactive install libproj22=8.2.1
RUN
zypper
--no-gpg-checks
--non-interactive
install
binutils libproj-devel gdal-devel
# install requirements
...
...
This diff is collapsed.
Click to expand it.
mlair/__init__.py
+
1
−
1
View file @
1f90f0fe
__version_info__
=
{
'
major
'
:
2
,
'
minor
'
:
2
,
'
minor
'
:
3
,
'
micro
'
:
0
,
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment