de.edux.data.provider.Normalizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lib Show documentation
Show all versions of lib Show documentation
Educational library for machine learning challenges
The newest version!
package de.edux.data.provider;
import java.util.List;
public interface Normalizer {
List normalize(List dataset);
}