Uses of Class
dev.dokimos.server.entity.Experiment
Packages that use Experiment
Package
Description
-
Uses of Experiment in dev.dokimos.server.entity
Methods in dev.dokimos.server.entity that return ExperimentMethods in dev.dokimos.server.entity that return types with arguments of type ExperimentConstructors in dev.dokimos.server.entity with parameters of type Experiment -
Uses of Experiment in dev.dokimos.server.repository
Methods in dev.dokimos.server.repository that return types with arguments of type ExperimentModifier and TypeMethodDescriptionExperimentRepositoryFragment.findByProject(Project project, TenantScope scope) Lists a project's experiments newest first, within the scope.ExperimentRepositoryFragmentImpl.findByProject(Project project, TenantScope scope) ExperimentRepositoryFragment.findByProjectAndName(Project project, String name, TenantScope scope) Finds an experiment of a project by name within the scope.ExperimentRepositoryFragmentImpl.findByProjectAndName(Project project, String name, TenantScope scope) Methods in dev.dokimos.server.repository with parameters of type ExperimentModifier and TypeMethodDescriptionExperimentRunRepositoryFragment.findBaselineCandidates(Experiment experiment, UUID candidateId, UUID datasetVersionId, String branch, org.springframework.data.domain.Pageable pageable, TenantScope scope) SUCCESS baseline candidates for automatic gate resolution, within the scope, newest first.ExperimentRunRepositoryFragmentImpl.findBaselineCandidates(Experiment experiment, UUID candidateId, UUID datasetVersionId, String branch, org.springframework.data.domain.Pageable pageable, TenantScope scope) ExperimentRunRepositoryFragment.findByExperiment(Experiment experiment, TenantScope scope) Lists an experiment's runs newest first, within the scope.ExperimentRunRepositoryFragmentImpl.findByExperiment(Experiment experiment, TenantScope scope) ExperimentRunRepositoryFragment.findCompletedRunsByExperiment(Experiment experiment, org.springframework.data.domain.Pageable pageable, TenantScope scope) Returns an experiment's terminal (SUCCESS or FAILED) runs newest first, within the scope.ExperimentRunRepositoryFragmentImpl.findCompletedRunsByExperiment(Experiment experiment, org.springframework.data.domain.Pageable pageable, TenantScope scope) ExperimentRunRepositoryFragment.findFirstByExperiment(Experiment experiment, TenantScope scope) Returns the most recent run of an experiment within the scope.ExperimentRunRepositoryFragmentImpl.findFirstByExperiment(Experiment experiment, TenantScope scope) -
Uses of Experiment in dev.dokimos.server.service
Methods in dev.dokimos.server.service that return ExperimentModifier and TypeMethodDescriptionExperimentService.getExperiment(UUID experimentId, TenantScope scope) ExperimentService.getOrCreateExperiment(Project project, String name, TenantScope scope) Resolves an experiment of the project by name within the scope, creating it stamped with the scope's tenant when absent.Methods in dev.dokimos.server.service with parameters of type ExperimentModifier and TypeMethodDescriptionRunService.createRun(Experiment experiment, CreateRunRequest request, TenantScope scope) Creates a run and persists its provenance fields (name, git SHA, branch, triggered_by) plus an optional link to the dataset version it executed against.RunService.createRun(Experiment experiment, Map<String, Object> config) ComparisonSupport.getRunInExperiment(UUID runId, Experiment experiment, String label, ExperimentRunRepository runRepository, TenantScope scope) Loads a run by id and asserts it belongs to the given experiment.RunService.listRuns(Experiment experiment, TenantScope scope)