Back to project page Sunset.
The source code is released under:
GNU General Public License
If you think the Android project Sunset listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package edu.rosehulman.mobilesunset.svm; /*from www . j ava2 s . c o m*/ public class SVMData { public static final double[] sigmas = { 0, 0, 0.6400000000000002, 1.2800000000000005, 1.8101933598375624, 2.2627416997969525, 2.5600000000000009, 3.6203867196751247 }; public static final int[] nSupportVectors = { 0, 0, 1349, 1335, 1393, 1577, 1710, 1581 }; public static final int[] dimensions = { 0, 6, 24, 54, 96, 150, 216, 294 }; public static final double[] biases = { 0, 0, -0.3423244187247540, -0.3962027136527820, -0.1245817791529550, -0.2216235591377296, -0.2588555386559440, -0.1557001152978647 }; public static final double[] NORMALIZATION_MINS = { 0, 0, 0, 0, 0, 0 }; public static final double[] NORMALIZATION_DELTAS = { 255, 127, 255, 127, 255, 127 }; }