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

ml.comet.experiment.model.Value 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.Instant;

/**
 * Represents value logged by the Comet experiment as a parameter, metric, etc.
 */
@Data
@NoArgsConstructor
@SuppressWarnings("unused")
public class Value {
    private String name;
    private String max;
    private String min;
    private String current;
    private Instant timestampMax;
    private Instant timestampMin;
    private Instant timestampCurrent;
    private String contextMax;
    private String contextMin;
    private String contextCurrent;
    private Long stepMax;
    private Long stepMin;
    private Long stepCurrent;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy