Changeset 6240
- Timestamp:
- 05/20/11 17:59:03 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4
- Files:
-
- 6 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/HeuristicLab.Algorithms.DataAnalysis-3.4.csproj
r5809 r6240 112 112 <Compile Include="HeuristicLabAlgorithmsDataAnalysisPlugin.cs" /> 113 113 <Compile Include="FixedDataAnalysisAlgorithm.cs" /> 114 <Compile Include="Interfaces\IRandomForestRegressionModel.cs" /> 115 <Compile Include="Interfaces\IRandomForestRegressionSolution.cs" /> 114 116 <Compile Include="Interfaces\ISupportVectorMachineModel.cs" /> 115 117 <Compile Include="Interfaces\ISupportVectorMachineSolution.cs" /> … … 127 129 </Compile> 128 130 <Compile Include="Properties\AssemblyInfo.cs" /> 131 <Compile Include="RandomForest\RandomForestRegression.cs" /> 132 <Compile Include="RandomForest\RandomForestRegressionSolution.cs" /> 133 <Compile Include="RandomForest\RandomForestRegressionModel.cs" /> 129 134 <Compile Include="SupportVectorMachine\SupportVectorClassification.cs" /> 130 135 <Compile Include="SupportVectorMachine\SupportVectorClassificationSolution.cs" /> -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Linear/LinearDiscriminantAnalysis.cs
r6182 r6240 36 36 /// Linear discriminant analysis classification algorithm. 37 37 /// </summary> 38 [Item("Linear Discriminant Analysis", "Linear discriminant analysis classification algorithm .")]38 [Item("Linear Discriminant Analysis", "Linear discriminant analysis classification algorithm (wrapper for ALGLIB).")] 39 39 [Creatable("Data Analysis")] 40 40 [StorableClass] -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Linear/LinearRegression.cs
r6182 r6240 37 37 /// Linear regression data analysis algorithm. 38 38 /// </summary> 39 [Item("Linear Regression", "Linear regression data analysis algorithm .")]39 [Item("Linear Regression", "Linear regression data analysis algorithm (wrapper for ALGLIB).")] 40 40 [Creatable("Data Analysis")] 41 41 [StorableClass] -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorClassification.cs
r6182 r6240 35 35 /// Support vector machine classification data analysis algorithm. 36 36 /// </summary> 37 [Item("Support Vector Classification", "Support vector machine classification data analysis algorithm .")]37 [Item("Support Vector Classification", "Support vector machine classification data analysis algorithm (wrapper for libSVM).")] 38 38 [Creatable("Data Analysis")] 39 39 [StorableClass] -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorRegression.cs
r6182 r6240 35 35 /// Support vector machine regression data analysis algorithm. 36 36 /// </summary> 37 [Item("Support Vector Regression", "Support vector machine regression data analysis algorithm .")]37 [Item("Support Vector Regression", "Support vector machine regression data analysis algorithm (wrapper for libSVM).")] 38 38 [Creatable("Data Analysis")] 39 39 [StorableClass] -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/kMeans/KMeansClustering.cs
r6182 r6240 35 35 /// k-Means clustering algorithm data analysis algorithm. 36 36 /// </summary> 37 [Item("k-Means", "The k-Means clustering algorithm .")]37 [Item("k-Means", "The k-Means clustering algorithm (wrapper for ALGLIB).")] 38 38 [Creatable("Data Analysis")] 39 39 [StorableClass]
Note: See TracChangeset
for help on using the changeset viewer.