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

com.github.wihoho.training.FeatureExtraction Maven / Gradle / Ivy

package com.github.wihoho.training;

import com.github.wihoho.jama.Matrix;

import java.util.ArrayList;


public abstract class FeatureExtraction {
	ArrayList trainingSet;
	ArrayList labels;
	int numOfComponents;
	Matrix meanMatrix;
	// Output
	Matrix W;
	ArrayList projectedTrainingSet;

	public abstract Matrix getW();

	public abstract ArrayList getProjectedTrainingSet();

	public abstract Matrix getMeanMatrix();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy