Changeset 14711 for branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine
- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorClassification.cs
r13368 r14711 38 38 [Item("Support Vector Classification (SVM)", "Support vector machine classification data analysis algorithm (wrapper for libSVM).")] 39 39 [Creatable(CreatableAttribute.Categories.DataAnalysisClassification, Priority = 110)] 40 [Storable Class("F5772433-8F5E-4AC0-806E-E6AFFB63E96E")]40 [StorableType("F5772433-8F5E-4AC0-806E-E6AFFB63E96E")] 41 41 public sealed class SupportVectorClassification : FixedDataAnalysisAlgorithm<IClassificationProblem> { 42 42 private const string SvmTypeParameterName = "SvmType"; -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorClassificationSolution.cs
r13368 r14711 30 30 /// </summary> 31 31 [Item("SupportVectorClassificationSolution", "Represents a support vector solution for a classification problem which can be visualized in the GUI.")] 32 [Storable Class("55714C0C-40CF-4D36-9511-D6245E81C1E3")]32 [StorableType("55714C0C-40CF-4D36-9511-D6245E81C1E3")] 33 33 public sealed class SupportVectorClassificationSolution : ClassificationSolution, ISupportVectorMachineSolution { 34 34 -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorMachineModel.cs
r13368 r14711 35 35 /// Represents a support vector machine model. 36 36 /// </summary> 37 [Storable Class("0AB8F0B0-DB90-488D-9EB4-CB7D81566655")]37 [StorableType("0AB8F0B0-DB90-488D-9EB4-CB7D81566655")] 38 38 [Item("SupportVectorMachineModel", "Represents a support vector machine model.")] 39 39 public sealed class SupportVectorMachineModel : NamedItem, ISupportVectorMachineModel { -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorRegression.cs
r13368 r14711 38 38 [Item("Support Vector Regression (SVM)", "Support vector machine regression data analysis algorithm (wrapper for libSVM).")] 39 39 [Creatable(CreatableAttribute.Categories.DataAnalysisRegression, Priority = 110)] 40 [Storable Class("11DB1DEB-3B8D-44F0-B522-28328E57FF4B")]40 [StorableType("11DB1DEB-3B8D-44F0-B522-28328E57FF4B")] 41 41 public sealed class SupportVectorRegression : FixedDataAnalysisAlgorithm<IRegressionProblem> { 42 42 private const string SvmTypeParameterName = "SvmType"; -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorRegressionSolution.cs
r13368 r14711 30 30 /// </summary> 31 31 [Item("SupportVectorRegressionSolution", "Represents a support vector solution for a regression problem which can be visualized in the GUI.")] 32 [Storable Class("43C20E72-7AF9-42EF-821B-2040413065CC")]32 [StorableType("43C20E72-7AF9-42EF-821B-2040413065CC")] 33 33 public sealed class SupportVectorRegressionSolution : RegressionSolution, ISupportVectorMachineSolution { 34 34
Note: See TracChangeset
for help on using the changeset viewer.