示例#1
0
文件: Program.cs 项目: abaffa/INF1771
        static void Main(string[] args)
        {
            //DecisionTree_ID3_Example t = new DecisionTree_ID3_Example();
            //t.Run();

            //DecisionTree_ID3_Dynamic t = new DecisionTree_ID3_Dynamic();
            //t.Run("PlayTennis.txt");
            //t.Run("EsperaRestaurante.txt");
            //t.Run("weather.txt");

            DecisionTree_C45 t = new DecisionTree_C45();
            t.Run("weather.txt");
            //t.Run("nursery.txt");

            //Algoritmo Programado sem Biblioteca
            //DecisionTree_ID3 id3 = new DecisionTree_ID3();
            //id3.Run();

            // Suspend the screen.
            System.Console.ReadLine();
        }
示例#2
0
        static void Main(string[] args)
        {
            //DecisionTree_ID3_Example t = new DecisionTree_ID3_Example();
            //t.Run();

            //DecisionTree_ID3_Dynamic t = new DecisionTree_ID3_Dynamic();
            //t.Run("PlayTennis.txt");
            //t.Run("EsperaRestaurante.txt");
            //t.Run("weather.txt");

            DecisionTree_C45 t = new DecisionTree_C45();

            t.Run("weather.txt");
            //t.Run("nursery.txt");

            //Algoritmo Programado sem Biblioteca
            //DecisionTree_ID3 id3 = new DecisionTree_ID3();
            //id3.Run();

            // Suspend the screen.
            System.Console.ReadLine();
        }