setTitle("Train SOM Network");
addProperty(this.learningRate = new DoubleField("learning rate","Learning Rate",true,0,-1));
addProperty(this.neighborhoodType = new ComboBoxField("neighborhood","Neighborhood Type",true,list));
addProperty(this.rbfWidth = new DoubleField("rbf width","RBF Width",true,0,1000));
addProperty(this.cols = new IntegerField("cols", "2D RBF Columns",true,0,1000000));
addProperty(this.rows = new IntegerField("rows", "2D RBF Rows",true,0,1000000));
addProperty(this.forceWinner = new CheckField("force winner","Force Winner"));
render();
this.learningRate.setValue(0.25);
this.getRBFWidth().setValue(2);
this.getCols().setValue(1);