MLFlowClient.jl icon indicating copy to clipboard operation
MLFlowClient.jl copied to clipboard

Improve tag definition

Open pebeto opened this issue 2 years ago • 0 comments

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")

pebeto avatar Aug 17 '23 18:08 pebeto