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

org.bigml.binding.resources.Ensemble Maven / Gradle / Ivy

Go to download

An open source Java client that gives you a simple binding to interact with BigML. You can use it to easily create, retrieve, list, update, and delete BigML resources.

There is a newer version: 2.1.1
Show newest version
package org.bigml.binding.resources;

import org.bigml.binding.BigMLClient;
import org.bigml.binding.utils.CacheManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Entry point to create, retrieve, list, update, and delete ensembles.
 *
 * Full API documentation on the API can be found from BigML at:
 * https://bigml.com/api/ensembles
 *
 *
 */
public class Ensemble extends AbstractModelResource {

    // Logging
    Logger logger = LoggerFactory.getLogger(Ensemble.class);
    
    /**
     * Constructor
     *
     * @deprecated
     */
	public Ensemble() {
		super.init(null, null, null, null, null, 
				ENSEMBLE_RE, ENSEMBLE_PATH);
	}

	/**
	 * Constructor
	 *
	 * @deprecated
	 */
	public Ensemble(final String apiUser, final String apiKey) {
		super.init(apiUser, apiKey, null, null, null, 
				ENSEMBLE_RE, ENSEMBLE_PATH);
	}
	
	/**
	 * Constructor
	 *
	 * @deprecated
	 */
	public Ensemble(final String apiUser, final String apiKey,
			final CacheManager cacheManager) {
		super.init(apiUser, apiKey, null, null, null, 
				ENSEMBLE_RE, ENSEMBLE_PATH);
	}
	
    /**
     * Constructor
     *
     */
    public Ensemble(final BigMLClient bigmlClient,
    				final String apiUser, final String apiKey, 
    			    final String project, final String organization,
    			    final CacheManager cacheManager) {
    		super.init(bigmlClient, apiUser, apiKey, project, organization, 
    				   cacheManager, ENSEMBLE_RE, ENSEMBLE_PATH);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy