public static interface Service.SearchRunsOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getExperimentIds(int index)
List of experiment IDs to search over.
|
com.google.protobuf.ByteString |
getExperimentIdsBytes(int index)
List of experiment IDs to search over.
|
int |
getExperimentIdsCount()
List of experiment IDs to search over.
|
List<String> |
getExperimentIdsList()
List of experiment IDs to search over.
|
String |
getFilter()
A filter expression over params, metrics, and tags, that allows returning a subset of
runs.
|
com.google.protobuf.ByteString |
getFilterBytes()
A filter expression over params, metrics, and tags, that allows returning a subset of
runs.
|
int |
getMaxResults()
Maximum number of runs desired.
|
String |
getOrderBy(int index)
List of columns to be ordered by, including attributes, params, metrics, and tags with an
optional "DESC" or "ASC" annotation, where "ASC" is the default.
|
com.google.protobuf.ByteString |
getOrderByBytes(int index)
List of columns to be ordered by, including attributes, params, metrics, and tags with an
optional "DESC" or "ASC" annotation, where "ASC" is the default.
|
int |
getOrderByCount()
List of columns to be ordered by, including attributes, params, metrics, and tags with an
optional "DESC" or "ASC" annotation, where "ASC" is the default.
|
List<String> |
getOrderByList()
List of columns to be ordered by, including attributes, params, metrics, and tags with an
optional "DESC" or "ASC" annotation, where "ASC" is the default.
|
String |
getPageToken()
optional string page_token = 7; |
com.google.protobuf.ByteString |
getPageTokenBytes()
optional string page_token = 7; |
Service.ViewType |
getRunViewType()
Whether to display only active, only deleted, or all runs.
|
boolean |
hasFilter()
A filter expression over params, metrics, and tags, that allows returning a subset of
runs.
|
boolean |
hasMaxResults()
Maximum number of runs desired.
|
boolean |
hasPageToken()
optional string page_token = 7; |
boolean |
hasRunViewType()
Whether to display only active, only deleted, or all runs.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
List<String> getExperimentIdsList()
List of experiment IDs to search over.
repeated string experiment_ids = 1;
int getExperimentIdsCount()
List of experiment IDs to search over.
repeated string experiment_ids = 1;
String getExperimentIds(int index)
List of experiment IDs to search over.
repeated string experiment_ids = 1;
com.google.protobuf.ByteString getExperimentIdsBytes(int index)
List of experiment IDs to search over.
repeated string experiment_ids = 1;
boolean hasFilter()
A filter expression over params, metrics, and tags, that allows returning a subset of runs. The syntax is a subset of SQL that supports ANDing together binary operations between a param, metric, or tag and a constant. Example: ``metrics.rmse < 1 and params.model_class = 'LogisticRegression'`` You can select columns with special characters (hyphen, space, period, etc.) by using double quotes: ``metrics."model class" = 'LinearRegression' and tags."user-name" = 'Tomas'`` Supported operators are ``=``, ``!=``, ``>``, ``>=``, ``<``, and ``<=``.
optional string filter = 4;
String getFilter()
A filter expression over params, metrics, and tags, that allows returning a subset of runs. The syntax is a subset of SQL that supports ANDing together binary operations between a param, metric, or tag and a constant. Example: ``metrics.rmse < 1 and params.model_class = 'LogisticRegression'`` You can select columns with special characters (hyphen, space, period, etc.) by using double quotes: ``metrics."model class" = 'LinearRegression' and tags."user-name" = 'Tomas'`` Supported operators are ``=``, ``!=``, ``>``, ``>=``, ``<``, and ``<=``.
optional string filter = 4;
com.google.protobuf.ByteString getFilterBytes()
A filter expression over params, metrics, and tags, that allows returning a subset of runs. The syntax is a subset of SQL that supports ANDing together binary operations between a param, metric, or tag and a constant. Example: ``metrics.rmse < 1 and params.model_class = 'LogisticRegression'`` You can select columns with special characters (hyphen, space, period, etc.) by using double quotes: ``metrics."model class" = 'LinearRegression' and tags."user-name" = 'Tomas'`` Supported operators are ``=``, ``!=``, ``>``, ``>=``, ``<``, and ``<=``.
optional string filter = 4;
boolean hasRunViewType()
Whether to display only active, only deleted, or all runs. Defaults to only active runs.
optional .mlflow.ViewType run_view_type = 3 [default = ACTIVE_ONLY];
Service.ViewType getRunViewType()
Whether to display only active, only deleted, or all runs. Defaults to only active runs.
optional .mlflow.ViewType run_view_type = 3 [default = ACTIVE_ONLY];
boolean hasMaxResults()
Maximum number of runs desired. Max threshold is 50000
optional int32 max_results = 5 [default = 1000];
int getMaxResults()
Maximum number of runs desired. Max threshold is 50000
optional int32 max_results = 5 [default = 1000];
List<String> getOrderByList()
List of columns to be ordered by, including attributes, params, metrics, and tags with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Example: ["params.input DESC", "metrics.alpha ASC", "metrics.rmse"] Tiebreaks are done by start_time DESC followed by run_id for runs with the same start time (and this is the default ordering criterion if order_by is not provided).
repeated string order_by = 6;
int getOrderByCount()
List of columns to be ordered by, including attributes, params, metrics, and tags with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Example: ["params.input DESC", "metrics.alpha ASC", "metrics.rmse"] Tiebreaks are done by start_time DESC followed by run_id for runs with the same start time (and this is the default ordering criterion if order_by is not provided).
repeated string order_by = 6;
String getOrderBy(int index)
List of columns to be ordered by, including attributes, params, metrics, and tags with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Example: ["params.input DESC", "metrics.alpha ASC", "metrics.rmse"] Tiebreaks are done by start_time DESC followed by run_id for runs with the same start time (and this is the default ordering criterion if order_by is not provided).
repeated string order_by = 6;
com.google.protobuf.ByteString getOrderByBytes(int index)
List of columns to be ordered by, including attributes, params, metrics, and tags with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Example: ["params.input DESC", "metrics.alpha ASC", "metrics.rmse"] Tiebreaks are done by start_time DESC followed by run_id for runs with the same start time (and this is the default ordering criterion if order_by is not provided).
repeated string order_by = 6;
boolean hasPageToken()
optional string page_token = 7;
String getPageToken()
optional string page_token = 7;
com.google.protobuf.ByteString getPageTokenBytes()
optional string page_token = 7;
Copyright © 2019. All rights reserved.