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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetExperimentIds(int index)List of experiment IDs to search over.com.google.protobuf.ByteStringgetExperimentIdsBytes(int index)List of experiment IDs to search over.intgetExperimentIdsCount()List of experiment IDs to search over.java.util.List<java.lang.String>getExperimentIdsList()List of experiment IDs to search over.java.lang.StringgetFilter()A filter expression over params, metrics, and tags, that allows returning a subset of runs.com.google.protobuf.ByteStringgetFilterBytes()A filter expression over params, metrics, and tags, that allows returning a subset of runs.intgetMaxResults()Maximum number of runs desired.java.lang.StringgetOrderBy(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.ByteStringgetOrderByBytes(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.intgetOrderByCount()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.StringgetPageToken()optional string page_token = 7;com.google.protobuf.ByteStringgetPageTokenBytes()optional string page_token = 7;Service.ViewTypegetRunViewType()Whether to display only active, only deleted, or all runs.booleanhasFilter()A filter expression over params, metrics, and tags, that allows returning a subset of runs.booleanhasMaxResults()Maximum number of runs desired.booleanhasPageToken()optional string page_token = 7;booleanhasRunViewType()Whether to display only active, only deleted, or all runs.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
getExperimentIdsListjava.util.List<java.lang.String> getExperimentIdsList() List of experiment IDs to search over. repeated string experiment_ids = 1;- Returns:
- A list containing the experimentIds.
 
 - 
getExperimentIdsCountint getExperimentIdsCount() List of experiment IDs to search over. repeated string experiment_ids = 1;- Returns:
- The count of experimentIds.
 
 - 
getExperimentIdsjava.lang.String getExperimentIds(int index) List of experiment IDs to search over. repeated string experiment_ids = 1;- Parameters:
- index- The index of the element to return.
- Returns:
- The experimentIds at the given index.
 
 - 
getExperimentIdsBytescom.google.protobuf.ByteString getExperimentIdsBytes(int index) List of experiment IDs to search over. repeated string experiment_ids = 1;- Parameters:
- index- The index of the value to return.
- Returns:
- The bytes of the experimentIds at the given index.
 
 - 
hasFilterboolean 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;- Returns:
- Whether the filter field is set.
 
 - 
getFilterjava.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;- Returns:
- The filter.
 
 - 
getFilterBytescom.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;- Returns:
- The bytes for filter.
 
 - 
hasRunViewTypeboolean 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];- Returns:
- Whether the runViewType field is set.
 
 - 
getRunViewTypeService.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];- Returns:
- The runViewType.
 
 - 
hasMaxResultsboolean hasMaxResults() Maximum number of runs desired. If unspecified, defaults to 1000. All servers are guaranteed to support a `max_results` threshold of at least 50,000 but may support more. Callers of this endpoint are encouraged to pass max_results explicitly and leverage page_token to iterate through experiments. optional int32 max_results = 5 [default = 1000];- Returns:
- Whether the maxResults field is set.
 
 - 
getMaxResultsint getMaxResults() Maximum number of runs desired. If unspecified, defaults to 1000. All servers are guaranteed to support a `max_results` threshold of at least 50,000 but may support more. Callers of this endpoint are encouraged to pass max_results explicitly and leverage page_token to iterate through experiments. optional int32 max_results = 5 [default = 1000];- Returns:
- The maxResults.
 
 - 
getOrderByListjava.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;- Returns:
- A list containing the orderBy.
 
 - 
getOrderByCountint 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;- Returns:
- The count of orderBy.
 
 - 
getOrderByjava.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;- Parameters:
- index- The index of the element to return.
- Returns:
- The orderBy at the given index.
 
 - 
getOrderByBytescom.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;- Parameters:
- index- The index of the value to return.
- Returns:
- The bytes of the orderBy at the given index.
 
 - 
hasPageTokenboolean hasPageToken() optional string page_token = 7;- Returns:
- Whether the pageToken field is set.
 
 - 
getPageTokenjava.lang.String getPageToken() optional string page_token = 7;- Returns:
- The pageToken.
 
 - 
getPageTokenBytescom.google.protobuf.ByteString getPageTokenBytes() optional string page_token = 7;- Returns:
- The bytes for pageToken.
 
 
- 
 
-