Class RandomSearch

java.lang.Object
de.uka.ipd.sdq.dsexplore.bayesnets.searchers.RandomSearch

public class RandomSearch extends Object
Searches randomly in the search space for Bayesian Networks. Yet to be implemented completely.
  • Constructor Details

    • RandomSearch

      public RandomSearch()
  • Method Details

    • main

      public static void main(String[] args)
    • search

      public int[][] search(int[][] DataMatrix)
      This method searches the best bayesian networks in the search space. The search order is random.
      Parameters:
      DataMatrix - - The matrix containing data. Each row represents a data instance
      Returns:
      An Adjacency matrix of the best learnt Bayesian network.