package wcet.dsvmfp; // This file is automatically generated by dsvm.util.DataCreatorJava public class TrainingData1Float implements SVMData { private static float data[][] = { { 1.0f, 1.0f }, { -1.0f, -1.0f }, { -2.0f, -2.0f }, }; private static float y[] = { 1.0f, -1.0f, -1.0f, }; /* * public static float data_fp2[] = {1.0f, 0.0f}; public static float y_fp2 * = 1.0f; * * public static float data_fp3[] = {-1.0f, 0.0f}; public static float y_fp3 * = -1.0f; */ public float[][] getTestData() { // TODO Auto-generated method stub return data; } public float[] getTestLabels() { // TODO Auto-generated method stub return y; } public float[][] getTrainingData() { // TODO Auto-generated method stub return data; } public float[] getTrainingLabels() { // TODO Auto-generated method stub return y; } }