Пример #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);
 }
Пример #3
0
 public ModelEventArgs(string a, KmeansStore s, KmeansConfig c)
 {
     this.action = a;
     this.store  = s;
     this.config = c;
 }
Пример #4
0
 public ModelEventArgs(string a, KmeansStore s)
 {
     this.action = a;
     this.store  = s;
 }