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

ai.h2o.automl.preprocessing.PreprocessingConfig Maven / Gradle / Ivy

There is a newer version: 3.46.0.6
Show newest version
package ai.h2o.automl.preprocessing;

import java.util.HashMap;

public class PreprocessingConfig extends HashMap {
    
    boolean get(String key, boolean defaultValue) {
        return (boolean) getOrDefault(key, defaultValue);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy