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

org.wikibrain.sr.normalize.Normalizer Maven / Gradle / Ivy

There is a newer version: 0.9.1
Show newest version
package org.wikibrain.sr.normalize;

import org.wikibrain.sr.SRResultList;

import java.io.Serializable;

public interface Normalizer extends Serializable {
    public SRResultList normalize(SRResultList list);
    public double normalize(double x);

    public void observe(SRResultList sims, int rank, double y);
    public void observe(double x, double y);
    public void observe(double x);
    public void observationsFinished();
    public String dump();
    public boolean isTrained();

    public void reset();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy