@@ -6,14 +6,16 @@ Creates an MLFlow experiment.
66# Arguments
77- `mlf`: [`MLFlow`](@ref) configuration.
88- `name`: experiment name. If not specified, MLFlow sets it.
9- - `artifact_location`: directory where artifacts of this experiment will be stored. If not specified, MLFlow uses its default configuration.
9+ - `artifact_location`: directory where artifacts of this experiment will be
10+ stored. If not specified, `./mlruns` will be used (it will take the directory
11+ where you are running `mlflow` as the root one).
1012- `tags`: a Dictionary of key-values which tag the experiment.
1113
1214# Returns
1315An object of type [`MLFlowExperiment`](@ref).
1416
1517"""
16- function createexperiment (mlf:: MLFlow ; name= missing , artifact_location= missing , tags= missing )
18+ function createexperiment (mlf:: MLFlow ; name= missing , artifact_location= " ./mlruns " , tags= missing )
1719 endpoint = " experiments/create"
1820
1921 if ismissing (name)
@@ -103,7 +105,7 @@ Gets an experiment if one alrady exists, or creates a new one.
103105An instance of type [`MLFlowExperiment`](@ref)
104106
105107"""
106- function getorcreateexperiment (mlf:: MLFlow , experiment_name:: String ; artifact_location= missing , tags= missing )
108+ function getorcreateexperiment (mlf:: MLFlow , experiment_name:: String ; artifact_location= " ./mlruns " , tags= missing )
107109 experiment = getexperiment (mlf, experiment_name)
108110
109111 if ismissing (experiment)
0 commit comments