JuliaAI / MLFlowClient.jl

Julia client for MLFlow.
https://juliaai.github.io/MLFlowClient.jl/
MIT License
42 stars 8 forks source link

Improve tag definition #30

Open pebeto opened 10 months ago

pebeto commented 10 months ago

The current code requires that tags must be defined as:

[Dict("key" => "foo", "value" => "bar"), Dict("key" => "missy", "value" => "gala")]

but what about making all the logic behind to allow the user define the tags as:

# as an array of pairs
["foo" => "bar", "missy" => "gala"]

# as a key-value singular dict
Dict("foo" => "bar", "missy" => "gala")