Skip to content
Snippets Groups Projects
Commit 7f0b2188 authored by Pat Alt's avatar Pat Alt
Browse files

werid new complain about meta function

parent c9ce8386
No related branches found
No related tags found
1 merge request!8985 overshooting
......@@ -139,7 +139,7 @@ function run_experiment(
joinpath(exper.output_path, "$(exper.save_name)_bmk.jls"),
outcome.bmk,
)
meta(outcome; save_output = true)
all_meta(outcome; save_output = true)
end
# Final barrier:
......
"""
meta(exper::Experiment)
all_meta(exper::Experiment)
Extract and save meta data about the experiment.
"""
function meta(
function all_meta(
outcome::ExperimentOutcome;
save_output::Bool = false,
params_path::Union{Nothing,String} = nothing,
......
......@@ -23,7 +23,7 @@ function save_best(outcomes_file_path::String)
joinpath(output_path, "$(exper.save_name)_models.jls"),
outcome.model_dict,
)
meta(outcome; save_output = true, params_path = params_path)
all_meta(outcome; save_output = true, params_path = params_path)
end
function bmk2csv(dataname::String)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment