public static interface Service.LogMetricOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getKey()
Name of the metric.
|
com.google.protobuf.ByteString |
getKeyBytes()
Name of the metric.
|
String |
getRunId()
ID of the run under which to log the metric.
|
com.google.protobuf.ByteString |
getRunIdBytes()
ID of the run under which to log the metric.
|
String |
getRunUuid()
[Deprecated, use run_id instead] ID of the run under which to log the metric.
|
com.google.protobuf.ByteString |
getRunUuidBytes()
[Deprecated, use run_id instead] ID of the run under which to log the metric.
|
long |
getStep()
Step at which to log the metric
|
long |
getTimestamp()
Unix timestamp in milliseconds at the time metric was logged.
|
double |
getValue()
Double value of the metric being logged.
|
boolean |
hasKey()
Name of the metric.
|
boolean |
hasRunId()
ID of the run under which to log the metric.
|
boolean |
hasRunUuid()
[Deprecated, use run_id instead] ID of the run under which to log the metric.
|
boolean |
hasStep()
Step at which to log the metric
|
boolean |
hasTimestamp()
Unix timestamp in milliseconds at the time metric was logged.
|
boolean |
hasValue()
Double value of the metric being logged.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasRunId()
ID of the run under which to log the metric. Must be provided.
optional string run_id = 6;
String getRunId()
ID of the run under which to log the metric. Must be provided.
optional string run_id = 6;
com.google.protobuf.ByteString getRunIdBytes()
ID of the run under which to log the metric. Must be provided.
optional string run_id = 6;
boolean hasRunUuid()
[Deprecated, use run_id instead] ID of the run under which to log the metric. This field will be removed in a future MLflow version.
optional string run_uuid = 1;
String getRunUuid()
[Deprecated, use run_id instead] ID of the run under which to log the metric. This field will be removed in a future MLflow version.
optional string run_uuid = 1;
com.google.protobuf.ByteString getRunUuidBytes()
[Deprecated, use run_id instead] ID of the run under which to log the metric. This field will be removed in a future MLflow version.
optional string run_uuid = 1;
boolean hasKey()
Name of the metric.
optional string key = 2 [(.mlflow.validate_required) = true];
String getKey()
Name of the metric.
optional string key = 2 [(.mlflow.validate_required) = true];
com.google.protobuf.ByteString getKeyBytes()
Name of the metric.
optional string key = 2 [(.mlflow.validate_required) = true];
boolean hasValue()
Double value of the metric being logged.
optional double value = 3 [(.mlflow.validate_required) = true];
double getValue()
Double value of the metric being logged.
optional double value = 3 [(.mlflow.validate_required) = true];
boolean hasTimestamp()
Unix timestamp in milliseconds at the time metric was logged.
optional int64 timestamp = 4 [(.mlflow.validate_required) = true];
long getTimestamp()
Unix timestamp in milliseconds at the time metric was logged.
optional int64 timestamp = 4 [(.mlflow.validate_required) = true];
boolean hasStep()
Step at which to log the metric
optional int64 step = 5 [default = 0];
long getStep()
Step at which to log the metric
optional int64 step = 5 [default = 0];
Copyright © 2019. All rights reserved.