diff --git a/experiments/experiment.jl b/experiments/experiment.jl index b1a68c738ba71d7cbac4ba96aa0e3d8143356f8c..a375158e1f71fd22004357cbfd5400a85e40151b 100644 --- a/experiments/experiment.jl +++ b/experiments/experiment.jl @@ -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: diff --git a/experiments/post_processing/meta_data.jl b/experiments/post_processing/meta_data.jl index b50ce9785240e5ff8556139a6b88dc56e87626fc..ab4c982a14ff886e16a5cf7ad59edd86db945700 100644 --- a/experiments/post_processing/meta_data.jl +++ b/experiments/post_processing/meta_data.jl @@ -1,9 +1,9 @@ """ - 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, diff --git a/experiments/save_best.jl b/experiments/save_best.jl index a97c0d4ee4c9ac988c77edfe33ab9a8c010d95c2..977e8720b22e3f9ba9276375d472ad5c8b18f7f5 100644 --- a/experiments/save_best.jl +++ b/experiments/save_best.jl @@ -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)