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

org.kevoree.modeling.KObjectInfer Maven / Gradle / Ivy

There is a newer version: 4.27.0.2
Show newest version
package org.kevoree.modeling;

public interface KObjectInfer extends KObject {

    void genericTrain(KObject[] dependencies, Object[] expectedOutputs, KCallback callback);

    void genericTrainAll(KObject[][] trainingSet, Object[][] expectedResultSet, KCallback callback);

    void genericInfer(KObject[] features, KCallback callback);

    void genericInferAll(KObject[][] features, KCallback callback);

    void resetLearning();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy