ml.comet.experiment.CometApi Maven / Gradle / Ivy
package ml.comet.experiment;
import ml.comet.experiment.model.ExperimentMetadataRest;
import ml.comet.experiment.model.RestProject;
import java.util.List;
public interface CometApi {
/**
* Gets all workspaces available for current API key
* @return List of workspace names
*/
List getAllWorkspaces();
/**
* Gets all project dtos under specified workspace name
* @param workspaceName workspace name
* @return List of project dtos
*/
List getAllProjects(String workspaceName);
/**
* Gets all experiment dto under specified project id
* @param projectId Project id
* @return List of experiment dtos
*/
List getAllExperiments(String projectId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy