*/
public InputSearchSVM() {
super(false);
setSize(400,400);
setTitle("Support Vector Machine (SVM) Cross Validation");
addProperty(this.beginningGamma = new DoubleField("gamma begin","Gamma Begin",true,-1,-1));
addProperty(this.endingGamma = new DoubleField("gamma end","Gamma End",true,-1,-1));
addProperty(this.stepGamma = new DoubleField("gamma step","Gamma Step",true,-1,-1));
addProperty(this.beginningC = new DoubleField("c begin","C Begin",true,-1,-1));
addProperty(this.endingC = new DoubleField("c end","C End",true,-1,-1));
addProperty(this.stepC = new DoubleField("c step","C Step",true,-1,-1));
addProperty(this.threadCount = new IntegerField("thread count","Threads",true,1,20));
render();
this.threadCount.setValue(1);
}