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

ai.h2o.automl.ModelSelectionStrategy Maven / Gradle / Ivy

The newest version!
package ai.h2o.automl;

import hex.Model;
import water.Key;

@FunctionalInterface
public interface ModelSelectionStrategy{

    class Selection {
        final Key[] _add;  //models that should be added to the original population
        final Key[] _remove; //models that should be removed from the original population

        public Selection(Key[] add, Key[] remove) {
            _add = add;
            _remove = remove;
        }
    }

    Selection select(Key[] originalModels, Key[] newModels);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy