Package org.mlflow.api.proto
Interface Service.SearchRunsOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.SearchRuns
,Service.SearchRuns.Builder
- Enclosing class:
- Service
public static interface Service.SearchRunsOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description java.lang.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.java.util.List<java.lang.String>
getExperimentIdsList()
List of experiment IDs to search over.java.lang.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.java.lang.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.java.util.List<java.lang.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.java.lang.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.Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getExperimentIdsList
java.util.List<java.lang.String> getExperimentIdsList()List of experiment IDs to search over.
repeated string experiment_ids = 1;
-
getExperimentIdsCount
int getExperimentIdsCount()List of experiment IDs to search over.
repeated string experiment_ids = 1;
-
getExperimentIds
java.lang.String getExperimentIds(int index)List of experiment IDs to search over.
repeated string experiment_ids = 1;
-
getExperimentIdsBytes
com.google.protobuf.ByteString getExperimentIdsBytes(int index)List of experiment IDs to search over.
repeated string experiment_ids = 1;
-
hasFilter
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;
-
getFilter
java.lang.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;
-
getFilterBytes
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;
-
hasRunViewType
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];
-
getRunViewType
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];
-
hasMaxResults
boolean hasMaxResults()Maximum number of runs desired. Max threshold is 50000
optional int32 max_results = 5 [default = 1000];
-
getMaxResults
int getMaxResults()Maximum number of runs desired. Max threshold is 50000
optional int32 max_results = 5 [default = 1000];
-
getOrderByList
java.util.List<java.lang.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;
-
getOrderByCount
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;
-
getOrderBy
java.lang.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;
-
getOrderByBytes
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;
-
hasPageToken
boolean hasPageToken()optional string page_token = 7;
-
getPageToken
java.lang.String getPageToken()optional string page_token = 7;
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()optional string page_token = 7;
-