Example #1
0
        private static void Predict(string testFile, string modelFile, string outputFile)
        {
            var model = new TaxiFare.Model(modelFile, _context);

            model.Transform(testFile, outputFile);
        }