Ejemplo n.º 1
0
        public void DoAllPredictions(string path)
        {
            //TODO this method is poorly named and a hack
            PredictionManager predMgr = new PredictionManager(this);

            predMgr.GeneratePredictionsForDataWithAllTrees(path);

            OnProgressUpdated(100);
        }
Ejemplo n.º 2
0
        public void DoSomePrediction(string path)
        {
            //TODO this method is poorly named and a hack
            PredictionManager predMgr = new PredictionManager(this);

            predMgr.LoadTreeAndGenerateResults(path);

            OnProgressUpdated(100);
        }