Skip to content

Commit

Permalink
correct ; for , when loading io_arrays with JLD2
Browse files Browse the repository at this point in the history
  • Loading branch information
luisaforozco committed Aug 2, 2024
1 parent 043dc4e commit 1a6596d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/PaperDC/postanalysis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ io_test = create_io_arrays([data_test], setups_test);
## jldsave("$outdir/io_test.jld2"; io_test)
##
## # Load IO arrays
## io_train = load("$outdir/io_train.jld2"; "io_train")
## io_valid = load("$outdir/io_valid.jld2"; "io_valid")
## io_test = load("$outdir/io_test.jld2"; "io_test")
## io_train = load("$outdir/io_train.jld2", "io_train")
## io_valid = load("$outdir/io_valid.jld2", "io_valid")
## io_test = load("$outdir/io_test.jld2", "io_test")

# Check that data is reasonably bounded
io_train[1].u |> extrema
Expand Down

0 comments on commit 1a6596d

Please sign in to comment.