All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ml.comet.experiment.model.ExperimentMetadata Maven / Gradle / Ivy

There is a newer version: 1.1.14
Show newest version
package ml.comet.experiment.model;

import lombok.Data;
import lombok.NoArgsConstructor;

import java.time.Duration;
import java.time.Instant;

/**
 * Holds metadata associated with particular Comet experiment.
 */
@Data
@NoArgsConstructor
@SuppressWarnings("unused")
public class ExperimentMetadata {
    private String experimentKey;
    private String experimentName;
    private String userName;
    private String projectId;
    private String projectName;
    private String workspaceName;
    private Duration duration;
    private Instant startTime;
    private Instant endTime;
    private boolean isArchived;
    private boolean running;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy