1
1
"""
2
- MLFlowLogger (baseuri; experiment_name="MLJ experiment",
2
+ Logger (baseuri; experiment_name="MLJ experiment",
3
3
artifact_location=nothing)
4
4
5
5
A wrapper around a MLFlow service, with an experiment name and an artifact
@@ -17,24 +17,25 @@ used to store the artifacts of the experiment. If not provided, a default
17
17
artifact location will be defined by MLFlow. For more information, see
18
18
[MLFlow documentation](https://www.mlflow.org/docs/latest/tracking.html).
19
19
20
- This constructor returns a `MLFlowLogger ` object, containing the experiment
20
+ This constructor returns a `Logger ` object, containing the experiment
21
21
name and the artifact location specified previously. Also it contains a
22
22
`MLFlow` service, which is used to communicate with the MLFlow server. For
23
23
more information, see [MLFlowClient.jl](https://juliaai.github.io/MLFlowClient.jl/dev/reference/#MLFlowClient.MLFlow).
24
24
25
25
"""
26
- struct MLFlowLogger
26
+ struct Logger
27
27
service:: MLFlow
28
28
verbosity:: Int
29
29
experiment_name:: String
30
30
artifact_location:: Union{String,Nothing}
31
31
end
32
- function MLFlowLogger (baseuri; experiment_name= " MLJ experiment" ,
32
+ function Logger (baseuri; experiment_name= " MLJ experiment" ,
33
33
artifact_location= nothing , verbosity= 1 )
34
34
service = MLFlow (baseuri)
35
35
36
36
if ~ healthcheck (service)
37
- error (" It seems that the MLFlow server is not running. For more information, see https://mlflow.org/docs/latest/quickstart.html" )
37
+ error (" It seems that the MLFlow server is not running at specified " *
38
+ " location, $baseuri . For more information, see https://mlflow.org/docs/latest/quickstart.html" )
38
39
end
39
- MLFlowLogger (service, verbosity, experiment_name, artifact_location)
40
+ Logger (service, verbosity, experiment_name, artifact_location)
40
41
end
0 commit comments