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

ml.comet.experiment.ApiExperimentImpl Maven / Gradle / Ivy

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

import lombok.NonNull;
import lombok.experimental.UtilityClass;
import ml.comet.experiment.builder.ApiExperimentBuilder;

/**
 * This is stub to support backward compatibility.
 *
 * @deprecated It would be replaced in the future with new experiment creation API.
 */
@UtilityClass
public final class ApiExperimentImpl {
    /**
     * Returns builder to create {@link Experiment} instance.
     *
     * @param experimentKey the unique identifier of the existing experiment.
     * @return the initialized ApiExperiment instance.
     */
    public static ApiExperimentBuilder builder(@NonNull final String experimentKey) {
        return ml.comet.experiment.impl.ApiExperimentImpl.builder(experimentKey);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy