Changeset 6241 for trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IRandomForestModel.cs
- Timestamp:
- 05/20/11 18:54:39 (12 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IRandomForestModel.cs
r6240 r6241 27 27 namespace HeuristicLab.Algorithms.DataAnalysis { 28 28 /// <summary> 29 /// Interface to represent a random forest regression model29 /// Interface to represent a random forest model for either regression or classification 30 30 /// </summary> 31 public interface IRandomForest RegressionModel : IRegressionModel {31 public interface IRandomForestModel : IRegressionModel, IClassificationModel { 32 32 } 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.