10 lines
195 B
Java
Executable File
10 lines
195 B
Java
Executable File
package machine_learning;
|
|
|
|
import java.util.List;
|
|
|
|
public interface MachineLearning
|
|
{
|
|
void learn(List<Vector> positives, List<Vector> negatives);
|
|
DataClass classify(Vector toClassify);
|
|
}
|