Skip to content

Commit

Permalink
FIX: wrong output size of the parameterization NN for grc_mlp structure
Browse files Browse the repository at this point in the history
  • Loading branch information
nghi-truyen committed Sep 19, 2024
1 parent 5ed2a84 commit ea64b28
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions smash/_constant.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ def get_neurons_from_hydrological_module(hydrological_module: str, hidden_neuron
# % fixed NN input size = 5 and fixed NN output size 5
n_in, n_out = (5, 5)
elif hydrological_module == "grc_mlp":
# % fixed NN input size = 5 and fixed NN output size 4
n_in, n_out = (5, 4)
# % fixed NN input size = 5 and fixed NN output size 5
n_in, n_out = (5, 5)
elif hydrological_module == "grd_mlp":
# % fixed NN input size = 4 and fixed NN output size 2
n_in, n_out = (4, 2)
Expand Down
Binary file modified smash/tests/baseline.hdf5
Binary file not shown.
6 changes: 3 additions & 3 deletions smash/tests/diff_baseline.csv
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
commit 69949dee297a99e6fe86a32d516623f287a85d83
commit 5ed2a84b19d45d8dac54d35a036b9c1b3e8c57ff
Author: ngo-nghi-truyen.huynh <[email protected]>
Date: Wed Sep 18 16:01:16 2024 +0200
Date: Wed Sep 18 17:57:31 2024 +0200

Fix typos
Revert _version.py

TEST NAME |STATUS
bbox_mesh.active_cell |NON MODIFIED
Expand Down

0 comments on commit ea64b28

Please sign in to comment.