Ejemplo n.º 1
0
 public IClassifier CreateClassifier()
 {
     this.Initialize();
     this._clusteringSolution = this._clusteringAlgorithm.CreateClusters();
     this._BMNClassifier      = BayesianClusterMultinetClassifier.ConstructClusterBMNClassifier(this._clusteringSolution, this._classificationAlgorithm, this._trainingset);
     return(this._BMNClassifier);
 }
Ejemplo n.º 2
0
 public IClassifier CreateClassifier()
 {
     this.Initialize();
     this.Work();
     this.PostProcessing();
     this._clusteringSolution.SetClusterExampleAssignment(this._bestAnt.Solution.ToList());
     this._BMNClassifier = BayesianClusterMultinetClassifier.ConstructClusterBMNClassifier(this._clusteringSolution, this._classificationAlgorithm, this.Dataset);
     return(this._BMNClassifier);
 }