Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Climax
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
earth_observation_public
Climax
Commits
c17e9f3c
Commit
c17e9f3c
authored
3 years ago
by
Frisinghelli Daniel
Browse files
Options
Downloads
Patches
Plain Diff
Implemented training pr with MSE loss.
parent
5d1420a5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
climax/core/predict.py
+2
-2
2 additions, 2 deletions
climax/core/predict.py
climax/main/downscale_train.py
+8
-2
8 additions, 2 deletions
climax/main/downscale_train.py
with
10 additions
and
4 deletions
climax/core/predict.py
+
2
−
2
View file @
c17e9f3c
...
...
@@ -57,11 +57,11 @@ def predict_ERA5(net, ERA5_ds, predictand, batch_size=16, **kwargs):
LOGGER
.
info
(
'
Mini-batch: {:d}/{:d}
'
.
format
(
batch
+
1
,
len
(
dl
)))
# convert numpy array to xarray.Dataset
if
predictand
==
'
tas
'
:
if
predictand
==
'
tas
'
and
net
.
classifier
.
out_channels
==
2
:
# in case of tas, the netwokr predicts both tasmax and tasmin
ds
=
{
'
tasmax
'
:
target
[:,
0
,
...].
squeeze
(),
'
tasmin
'
:
target
[:,
1
,
...].
squeeze
()}
elif
predictand
==
'
pr
'
:
elif
predictand
==
'
pr
'
and
net
.
classifier
.
out_channels
==
3
:
# probability of precipitation
prob
=
torch
.
sigmoid
(
torch
.
as_tensor
(
target
[:,
0
,
...].
squeeze
(),
...
...
This diff is collapsed.
Click to expand it.
climax/main/downscale_train.py
+
8
−
2
View file @
c17e9f3c
...
...
@@ -21,6 +21,7 @@ from pysegcnn.core.trainer import NetworkTrainer, LogConfig
from
pysegcnn.core.models
import
Network
from
pysegcnn.core.logging
import
log_conf
from
climax.core.dataset
import
ERA5Dataset
,
NetCDFDataset
from
climax.core.loss
import
BernoulliGammaLoss
from
climax.main.config
import
(
ERA5_PLEVELS
,
ERA5_PREDICTORS
,
PREDICTAND
,
CALIB_PERIOD
,
DOY
,
SHUFFLE
,
BATCH_SIZE
,
LR
,
LAMBDA
,
NORM
,
TRAIN_CONFIG
,
NET
,
LOSS
,
FILTERS
,
...
...
@@ -128,8 +129,13 @@ if __name__ == '__main__':
valid_dl
=
DataLoader
(
valid_ds
,
batch_size
=
BATCH_SIZE
,
shuffle
=
SHUFFLE
,
drop_last
=
False
)
# instanciate network from scratch
outputs
=
3
if
PREDICTAND
==
'
pr
'
else
len
(
Obs_ds
.
data_vars
)
# define number of output fields
# check whether modelling pr with probabilistic approach
outputs
=
(
Obs_ds
.
data_vars
)
if
PREDICTAND
==
'
pr
'
and
isinstance
(
LOSS
,
BernoulliGammaLoss
):
outputs
=
3
# instanciate network
net
=
NET
(
state_file
,
train_ds
.
X
.
shape
[
1
],
outputs
,
filters
=
FILTERS
)
# initialize optimizer
...
...
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