1
1
"""
2
- createexperiment(mlf::MLFlow; name=missing, artifact_location=missing, tags::Vector{Dict{String, String}} =missing)
2
+ createexperiment(mlf::MLFlow; name=missing, artifact_location=missing, tags=missing)
3
3
4
4
Creates an MLFlow experiment.
5
5
@@ -14,7 +14,7 @@ Creates an MLFlow experiment.
14
14
An object of type [`MLFlowExperiment`](@ref).
15
15
16
16
"""
17
- function createexperiment (mlf:: MLFlow ; name= missing , artifact_location= missing , tags:: Vector{Dict{String, String}} = missing )
17
+ function createexperiment (mlf:: MLFlow ; name= missing , artifact_location= missing , tags= missing )
18
18
endpoint = " experiments/create"
19
19
20
20
if ismissing (name)
@@ -90,7 +90,7 @@ function getexperiment(mlf::MLFlow, experiment_name::String)
90
90
end
91
91
92
92
"""
93
- getorcreateexperiment(mlf::MLFlow, experiment_name::String; artifact_location=missing, tags::Vector{Dict{String, String}} =missing)
93
+ getorcreateexperiment(mlf::MLFlow, experiment_name::String; artifact_location=missing, tags=missing)
94
94
95
95
Gets an experiment if one alrady exists, or creates a new one.
96
96
@@ -105,7 +105,7 @@ Gets an experiment if one alrady exists, or creates a new one.
105
105
An instance of type [`MLFlowExperiment`](@ref)
106
106
107
107
"""
108
- function getorcreateexperiment (mlf:: MLFlow , experiment_name:: String ; artifact_location= missing , tags:: Vector{Dict{String, String}} = missing )
108
+ function getorcreateexperiment (mlf:: MLFlow , experiment_name:: String ; artifact_location= missing , tags= missing )
109
109
experiment = getexperiment (mlf, experiment_name)
110
110
111
111
if ismissing (experiment)
0 commit comments