Class RandomSearch


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

      • RandomSearch

        public RandomSearch()
    • Method Detail

      • 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.