11"""
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)
33
44Creates an MLFlow experiment.
55
@@ -14,7 +14,7 @@ Creates an MLFlow experiment.
1414An object of type [`MLFlowExperiment`](@ref).
1515
1616"""
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 )
1818 endpoint = " experiments/create"
1919
2020 if ismissing (name)
@@ -90,7 +90,7 @@ function getexperiment(mlf::MLFlow, experiment_name::String)
9090end
9191
9292"""
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)
9494
9595Gets an experiment if one alrady exists, or creates a new one.
9696
@@ -105,7 +105,7 @@ Gets an experiment if one alrady exists, or creates a new one.
105105An instance of type [`MLFlowExperiment`](@ref)
106106
107107"""
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 )
109109 experiment = getexperiment (mlf, experiment_name)
110110
111111 if ismissing (experiment)
0 commit comments