From 1ca9f8a5128362fa4d2a7df3d0f40e31c6a82187 Mon Sep 17 00:00:00 2001 From: Jose Esparza <28990958+pebeto@users.noreply.github.com> Date: Thu, 17 Aug 2023 17:04:59 -0500 Subject: [PATCH] change verbosity type to Int --- src/types.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.jl b/src/types.jl index 4a60a61..17c9dc9 100644 --- a/src/types.jl +++ b/src/types.jl @@ -25,7 +25,7 @@ more information, see [MLFlowClient.jl](https://juliaai.github.io/MLFlowClient.j """ struct MLFlowLogger service::MLFlow - verbosity::Integer + verbosity::Int experiment_name::String artifact_location::Union{String,Nothing} end