コード例 #1
0
ファイル: Program.cs プロジェクト: FatimaYousef/Regressors
        private void ExecutePolynomialLeastSquaresRegressor1to1Tester()
        {
            mylist = Reader.ReadToEndTheCases(dataset_path, "Gwinnett").Difference();
            PolynomialLeastSquares1to1RegressorTester tester = new PolynomialLeastSquares1to1RegressorTester(mylist);

            tester.RunTest();
        }
コード例 #2
0
        private static void ExecutePolynomialLeastSquaresRegressor1to1Tester()
        {
            PolynomialLeastSquares1to1RegressorTester tester = new PolynomialLeastSquares1to1RegressorTester();

            tester.RunTest();
        }