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

com.etsy.conjecture.model.Decomposable Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package com.etsy.conjecture.model;

import java.util.Iterator;
import java.util.Map;

/**
 * Type of model to be used with the LargeModelTrainer.
 */
public interface Decomposable {

    /**
     * Present the model internals to be summed across submodels.
     */
    public Iterator> decompose();

    /**
     * After rebuilding a blank model, fill in the parameters.
     */
    public void setParameter(String name, double value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy