- Timestamp:
- 07/18/16 17:45:45 (8 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IRandomForestModel.cs
r12012 r14107 29 29 /// Interface to represent a random forest model for either regression or classification 30 30 /// </summary> 31 public interface IRandomForestModel : I RegressionModel, IClassificationModel {31 public interface IRandomForestModel : IConfidenceRegressionModel, IClassificationModel { 32 32 } 33 33 } -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IRandomForestRegressionSolution.cs
r12012 r14107 28 28 /// Interface to represent a random forest regression solution 29 29 /// </summary> 30 public interface IRandomForestRegressionSolution : I RegressionSolution {30 public interface IRandomForestRegressionSolution : IConfidenceRegressionSolution { 31 31 new IRandomForestModel Model { get; } 32 32 }
Note: See TracChangeset
for help on using the changeset viewer.