Пример #1
0
 /** @param bMarkovBlanketClassifier */
 public void setMarkovBlanketClassifier(boolean bMarkovBlanketClassifier) {
   super.setMarkovBlanketClassifier(bMarkovBlanketClassifier);
 }
Пример #2
0
 /**
  * buildStructure determines the network structure/graph of the network with the K2 algorithm,
  * restricted by its initial structure (which can be an empty graph, or a Naive Bayes graph.
  *
  * @param bayesNet the network
  * @param instances the data to use
  * @throws Exception if something goes wrong
  */
 public void buildStructure(BayesNet bayesNet, Instances instances) throws Exception {
   m_BayesNet = bayesNet;
   super.buildStructure(bayesNet, instances);
 } // buildStructure