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

com.sigopt.Main Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.sigopt;

import com.sigopt.exception.APIException;
import com.sigopt.model.Experiment;
import com.sigopt.model.Observation;

public class Main {
    public static void main(String args[]) throws APIException {
        Sigopt.clientToken = "sample_client_token";

        String experimentId = "1";
        Experiment experiment = Experiment.fetch(experimentId).call();
        System.out.println(experiment);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy