Exemplo n.º 1
0
        private void TrainSetFilePicker_FilePicked(string path)
        {
            trainPoints           = CsvFileParser.ReadFile(path);
            LearnButton.IsEnabled = true;

            this.PlotTrainSet();
        }
Exemplo n.º 2
0
 private void TestFilePicker_FilePicked(string path)
 {
     this.testPoints = CsvFileParser.ReadFile(path);
     this.PlotTestSet();
 }