예제 #1
0
 public ModelEventArgs(string a, KmeansStore s, KmeansEvaluate e, KmeansConfig c)
 {
     this.action   = a;
     this.store    = s;
     this.config   = c;
     this.evaluate = e;
 }
예제 #2
0
 public KmeansModel()
 {
     this.store    = new KmeansStore();
     this.config   = new KmeansConfig();
     this.evaluate = new KmeansEvaluate();
     this.status   = new KmeansStatus(this.config);
 }