Skip to content

Commit

Permalink
Merge pull request #3510 from CliMA/ck/repro_table_fix
Browse files Browse the repository at this point in the history
Fix computed mse values in repro table
  • Loading branch information
charleskawczynski authored Jan 4, 2025
2 parents c35f959 + c5eaf3e commit 79c9891
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion reproducibility_tests/reproducibility_tools.jl
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,9 @@ function report_reproducibility_results(
data_scales = cflatten(map(computed_mses) do computed_mse
collect(values(computed_mse))
end)
computed_mse_values = cflatten(map(computed_mses) do computed_mse
collect(values(computed_mse))
end)
data_scales = map(x -> :not_yet_exported, data_scales)
statuses = cflatten(map(computed_mses) do computed_mse
collect(values(CRT.test_mse(; computed_mse)))
Expand All @@ -412,7 +415,7 @@ function report_reproducibility_results(
scolumn,
vcolumn,
data_scales,
data_scales,
computed_mse_values,
map(status_emoji, statuses),
)

Expand Down

0 comments on commit 79c9891

Please sign in to comment.