Uses of Class
org.mlflow.api.proto.Service.ViewType
-
Packages that use Service.ViewType Package Description org.mlflow.api.proto Autogenerated MLflow Tracking API entity objects.org.mlflow.tracking MLflow Tracking provides a Java CRUD interface to MLflow Experiments and Runs -- to create and log to MLflow runs, use theMlflowContextinterface. -
-
Uses of Service.ViewType in org.mlflow.api.proto
Methods in org.mlflow.api.proto that return Service.ViewType Modifier and Type Method Description static Service.ViewTypeService.ViewType. forNumber(int value)Service.ViewTypeService.SearchRuns.Builder. getRunViewType()Whether to display only active, only deleted, or all runs.Service.ViewTypeService.SearchRuns. getRunViewType()Whether to display only active, only deleted, or all runs.Service.ViewTypeService.SearchRunsOrBuilder. getRunViewType()Whether to display only active, only deleted, or all runs.Service.ViewTypeService.SearchExperiments.Builder. getViewType()Qualifier for type of experiments to be returned.Service.ViewTypeService.SearchExperiments. getViewType()Qualifier for type of experiments to be returned.Service.ViewTypeService.SearchExperimentsOrBuilder. getViewType()Qualifier for type of experiments to be returned.static Service.ViewTypeService.ViewType. valueOf(int value)Deprecated.static Service.ViewTypeService.ViewType. valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static Service.ViewTypeService.ViewType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Service.ViewType[]Service.ViewType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.mlflow.api.proto that return types with arguments of type Service.ViewType Modifier and Type Method Description static com.google.protobuf.Internal.EnumLiteMap<Service.ViewType>Service.ViewType. internalGetValueMap()Methods in org.mlflow.api.proto with parameters of type Service.ViewType Modifier and Type Method Description Service.SearchRuns.BuilderService.SearchRuns.Builder. setRunViewType(Service.ViewType value)Whether to display only active, only deleted, or all runs.Service.SearchExperiments.BuilderService.SearchExperiments.Builder. setViewType(Service.ViewType value)Qualifier for type of experiments to be returned. -
Uses of Service.ViewType in org.mlflow.tracking
Methods in org.mlflow.tracking with parameters of type Service.ViewType Modifier and Type Method Description ExperimentsPageMlflowClient. searchExperiments(java.lang.String searchFilter, Service.ViewType experimentViewType, int maxResults, java.util.List<java.lang.String> orderBy)Return experiments that satisfy the search query.ExperimentsPageMlflowClient. searchExperiments(java.lang.String searchFilter, Service.ViewType experimentViewType, int maxResults, java.util.List<java.lang.String> orderBy, java.lang.String pageToken)Return experiments that satisfy the search query.java.util.List<Service.RunInfo>MlflowClient. searchRuns(java.util.List<java.lang.String> experimentIds, java.lang.String searchFilter, Service.ViewType runViewType)Deprecated.As of 1.1.0 - please useMlflowClient.searchRuns(List, String, ViewType, int)or similar that returns a page of Run results.RunsPageMlflowClient. searchRuns(java.util.List<java.lang.String> experimentIds, java.lang.String searchFilter, Service.ViewType runViewType, int maxResults)Return runs from provided list of experiments that satisfy the search query.RunsPageMlflowClient. searchRuns(java.util.List<java.lang.String> experimentIds, java.lang.String searchFilter, Service.ViewType runViewType, int maxResults, java.util.List<java.lang.String> orderBy)Return runs from provided list of experiments that satisfy the search query.RunsPageMlflowClient. searchRuns(java.util.List<java.lang.String> experimentIds, java.lang.String searchFilter, Service.ViewType runViewType, int maxResults, java.util.List<java.lang.String> orderBy, java.lang.String pageToken)Return runs from provided list of experiments that satisfy the search query.
-