MLFlowLogger.log_artifactMethod
function log_artifact(logger::MLFLogger, filepath)

Log a local file as an artifact of the currently active run.

  • filepath: Path to the file
MLFlowLogger.log_imageMethod
function log_image(logger::MLFLogger, obj::AbstractString)

Log a local image file as an artifact of the currently active run.

MLFlowLogger.log_metricMethod
function log_metric(logger::MLFLogger, key::AbstractString, value::Real; timestamp=missing, step=missing)

Logs general scalar metrics.

MLFlowLogger.logable_propertynamesMethod
logable_propertynames(val::Any)

Returns a tuple with the name of the fields of the structure val that should be logged to Comet.ml. This function should be overridden when you want Comet.ml to ignore some fields in a structure when logging it. The default behaviour is to return the same result as propertynames. See also: Base.propertynames