public static interface Service.RunInfoOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getArtifactUri()
URI of the directory where artifacts should be uploaded.
|
com.google.protobuf.ByteString |
getArtifactUriBytes()
URI of the directory where artifacts should be uploaded.
|
long |
getEndTime()
Unix timestamp of when the run ended in milliseconds.
|
String |
getExperimentId()
The experiment ID.
|
com.google.protobuf.ByteString |
getExperimentIdBytes()
The experiment ID.
|
String |
getLifecycleStage()
Current life cycle stage of the experiment : OneOf("active", "deleted")
|
com.google.protobuf.ByteString |
getLifecycleStageBytes()
Current life cycle stage of the experiment : OneOf("active", "deleted")
|
String |
getRunId()
Unique identifier for the run.
|
com.google.protobuf.ByteString |
getRunIdBytes()
Unique identifier for the run.
|
String |
getRunUuid()
[Deprecated, use run_id instead] Unique identifier for the run.
|
com.google.protobuf.ByteString |
getRunUuidBytes()
[Deprecated, use run_id instead] Unique identifier for the run.
|
long |
getStartTime()
Unix timestamp of when the run started in milliseconds.
|
Service.RunStatus |
getStatus()
Current status of the run.
|
String |
getUserId()
User who initiated the run.
|
com.google.protobuf.ByteString |
getUserIdBytes()
User who initiated the run.
|
boolean |
hasArtifactUri()
URI of the directory where artifacts should be uploaded.
|
boolean |
hasEndTime()
Unix timestamp of when the run ended in milliseconds.
|
boolean |
hasExperimentId()
The experiment ID.
|
boolean |
hasLifecycleStage()
Current life cycle stage of the experiment : OneOf("active", "deleted")
|
boolean |
hasRunId()
Unique identifier for the run.
|
boolean |
hasRunUuid()
[Deprecated, use run_id instead] Unique identifier for the run.
|
boolean |
hasStartTime()
Unix timestamp of when the run started in milliseconds.
|
boolean |
hasStatus()
Current status of the run.
|
boolean |
hasUserId()
User who initiated the run.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasRunId()
Unique identifier for the run.
optional string run_id = 15;
String getRunId()
Unique identifier for the run.
optional string run_id = 15;
com.google.protobuf.ByteString getRunIdBytes()
Unique identifier for the run.
optional string run_id = 15;
boolean hasRunUuid()
[Deprecated, use run_id instead] Unique identifier for the run. This field will be removed in a future MLflow version.
optional string run_uuid = 1;
String getRunUuid()
[Deprecated, use run_id instead] Unique identifier for the run. 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] Unique identifier for the run. This field will be removed in a future MLflow version.
optional string run_uuid = 1;
boolean hasExperimentId()
The experiment ID.
optional string experiment_id = 2;
String getExperimentId()
The experiment ID.
optional string experiment_id = 2;
com.google.protobuf.ByteString getExperimentIdBytes()
The experiment ID.
optional string experiment_id = 2;
boolean hasUserId()
User who initiated the run. This field is deprecated as of MLflow 1.0, and will be removed in a future MLflow release. Use 'mlflow.user' tag instead.
optional string user_id = 6;
String getUserId()
User who initiated the run. This field is deprecated as of MLflow 1.0, and will be removed in a future MLflow release. Use 'mlflow.user' tag instead.
optional string user_id = 6;
com.google.protobuf.ByteString getUserIdBytes()
User who initiated the run. This field is deprecated as of MLflow 1.0, and will be removed in a future MLflow release. Use 'mlflow.user' tag instead.
optional string user_id = 6;
boolean hasStatus()
Current status of the run.
optional .mlflow.RunStatus status = 7;
Service.RunStatus getStatus()
Current status of the run.
optional .mlflow.RunStatus status = 7;
boolean hasStartTime()
Unix timestamp of when the run started in milliseconds.
optional int64 start_time = 8;
long getStartTime()
Unix timestamp of when the run started in milliseconds.
optional int64 start_time = 8;
boolean hasEndTime()
Unix timestamp of when the run ended in milliseconds.
optional int64 end_time = 9;
long getEndTime()
Unix timestamp of when the run ended in milliseconds.
optional int64 end_time = 9;
boolean hasArtifactUri()
URI of the directory where artifacts should be uploaded. This can be a local path (starting with "/"), or a distributed file system (DFS) path, like ``s3://bucket/directory`` or ``dbfs:/my/directory``. If not set, the local ``./mlruns`` directory is chosen.
optional string artifact_uri = 13;
String getArtifactUri()
URI of the directory where artifacts should be uploaded. This can be a local path (starting with "/"), or a distributed file system (DFS) path, like ``s3://bucket/directory`` or ``dbfs:/my/directory``. If not set, the local ``./mlruns`` directory is chosen.
optional string artifact_uri = 13;
com.google.protobuf.ByteString getArtifactUriBytes()
URI of the directory where artifacts should be uploaded. This can be a local path (starting with "/"), or a distributed file system (DFS) path, like ``s3://bucket/directory`` or ``dbfs:/my/directory``. If not set, the local ``./mlruns`` directory is chosen.
optional string artifact_uri = 13;
boolean hasLifecycleStage()
Current life cycle stage of the experiment : OneOf("active", "deleted")
optional string lifecycle_stage = 14;
String getLifecycleStage()
Current life cycle stage of the experiment : OneOf("active", "deleted")
optional string lifecycle_stage = 14;
com.google.protobuf.ByteString getLifecycleStageBytes()
Current life cycle stage of the experiment : OneOf("active", "deleted")
optional string lifecycle_stage = 14;
Copyright © 2019. All rights reserved.