Skip to content

Commit 21d09a1

Browse files
committed
small bug fix
1 parent 15bc582 commit 21d09a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ other arguents are --epochs, --lr (learning rate), --number_residual_blocks, --w
6363
An example evaluation for the unconstrained model:
6464

6565
```sh
66-
$ python main.py --training_evalonly evalonly --dataset era5_twc --model cnn --model_id twc_cnn_noconstraints --constraints none
66+
$ python main.py --training_evalonly evalonly --dataset era5_sr_data --model cnn --model_id twc_cnn_noconstraints --constraints none
6767
```
6868

6969
It produces a csv file with all metrics on either validation or test set.

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def main(args):
4040
else:
4141
data = load_data(args)
4242
#run training
43-
evaluate_model(args, data)
43+
evaluate_model(data, args)
4444

4545
if __name__ == '__main__':
4646
args = add_arguments()

0 commit comments

Comments
 (0)