Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/01/11 17:48:53 (13 years ago)
Author:
mkommend
Message:

#1479: Integrated trunk changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GP.Grammar.Editor/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationEnsembleModel.cs

    r6239 r6618  
    5858
    5959    #region IClassificationEnsembleModel Members
     60    public void Add(IClassificationModel model) {
     61      models.Add(model);
     62    }
     63    public void Remove(IClassificationModel model) {
     64      models.Remove(model);
     65    }
    6066
    6167    public IEnumerable<IEnumerable<double>> GetEstimatedClassValueVectors(Dataset dataset, IEnumerable<int> rows) {
     
    8692    }
    8793
     94    IClassificationSolution IClassificationModel.CreateClassificationSolution(IClassificationProblemData problemData) {
     95      return new ClassificationEnsembleSolution(models, problemData);
     96    }
    8897    #endregion
    8998  }
Note: See TracChangeset for help on using the changeset viewer.