- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IDataAnalysisAlgorithm.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Optimization; 23 23 using HeuristicLab.Problems.DataAnalysis; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Algorithms.DataAnalysis { 27 [StorableType("76554c78-e43e-4988-910b-0f31338dab47")] 26 28 /// <summary> 27 29 /// Interface to represent a data analysis algorithm. -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IGaussianProcessClassificationModelCreator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Problems.DataAnalysis; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Algorithms.DataAnalysis { 27 [StorableType("14d873cf-cdfa-40db-80d2-bc25ccf38344")] 26 28 /// <summary> 27 29 /// Interface to represent a Gaussian process model creator for classification -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IGaussianProcessModel.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using HeuristicLab.Problems.DataAnalysis; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("dc76e136-7a3e-49cd-95b4-bbd3ead06d0c")] 25 27 /// <summary> 26 28 /// Interface to represent a Gaussian process posterior -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IGaussianProcessModelCreator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Data; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Algorithms.DataAnalysis { 28 [StorableType("a83cbf4d-6e7c-4e30-904e-d0f0c89d2ed3")] 27 29 /// <summary> 28 30 /// Interface to represent a Gaussian process model creator (either regression or classification) -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IGaussianProcessRegressionModelCreator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Problems.DataAnalysis; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Algorithms.DataAnalysis { 27 [StorableType("11e34d2f-d302-4048-b125-7886cf655d6f")] 26 28 /// <summary> 27 29 /// Interface to represent a Gaussian process model creator for regression -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IGaussianProcessSolution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using HeuristicLab.Problems.DataAnalysis; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("f9bedb56-c034-4bb3-8125-d1146b03376c")] 25 27 /// <summary> 26 28 /// Interface to represent a Gaussian process solution (either regression or classification) -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INcaClassificationSolution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using HeuristicLab.Problems.DataAnalysis; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("afb3d86e-f5a9-4bd5-a5a5-35337c1163e9")] 25 27 public interface INcaClassificationSolution : IClassificationSolution { 26 28 new INcaModel Model { get; } -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INcaModel.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System.Collections.Generic; 23 23 using HeuristicLab.Problems.DataAnalysis; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Algorithms.DataAnalysis { 27 [StorableType("52f233e3-90de-4de9-bd8f-eca1b9eab1ac")] 26 28 public interface INcaModel : IClassificationModel { 27 29 new INcaClassificationSolution CreateClassificationSolution(IClassificationProblemData problemData); -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INearestNeighbourClassificationSolution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Optimization;23 22 using HeuristicLab.Problems.DataAnalysis; 24 using H euristicLab.Core;23 using HEAL.Attic; 25 24 26 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("ad083c00-f5fb-4b79-a36f-489523f98be9")] 27 27 /// <summary> 28 28 /// Interface to represent a nearest neighbour classification solution -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INearestNeighbourModel.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Optimization;23 22 using HeuristicLab.Problems.DataAnalysis; 24 using HeuristicLab.Core; 25 using System.Collections.Generic; 23 using HEAL.Attic; 26 24 27 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("ceda9f55-7424-4f9a-9961-db300d093f96")] 28 27 /// <summary> 29 28 /// Interface to represent a nearest neighbour model for either regression or classification -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INearestNeighbourRegressionSolution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Optimization;23 22 using HeuristicLab.Problems.DataAnalysis; 24 using H euristicLab.Core;23 using HEAL.Attic; 25 24 26 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("ce11dac3-5b79-4390-80cc-dddeb9d0250c")] 27 27 /// <summary> 28 28 /// Interface to represent a nearest neighbour regression solution -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INeuralNetworkClassificationSolution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Optimization;23 22 using HeuristicLab.Problems.DataAnalysis; 24 using H euristicLab.Core;23 using HEAL.Attic; 25 24 26 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("5c569264-6b1d-4a7c-8c3a-938576f07c6f")] 27 27 /// <summary> 28 28 /// Interface to represent a neural network classification solution -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INeuralNetworkEnsembleClassificationSolution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Optimization;23 22 using HeuristicLab.Problems.DataAnalysis; 24 using H euristicLab.Core;23 using HEAL.Attic; 25 24 26 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("d9c3883e-99bb-4730-b36c-18ed2a52cbe3")] 27 27 /// <summary> 28 28 /// Interface to represent a neural network ensemble classification solution -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INeuralNetworkEnsembleModel.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Optimization;23 22 using HeuristicLab.Problems.DataAnalysis; 24 using HeuristicLab.Core; 25 using System.Collections.Generic; 23 using HEAL.Attic; 26 24 27 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("8cc4503e-dec8-43d9-a966-3619ace0da41")] 28 27 /// <summary> 29 28 /// Interface to represent a neural network ensemble model for either regression or classification -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INeuralNetworkEnsembleRegressionSolution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Optimization;23 22 using HeuristicLab.Problems.DataAnalysis; 24 using H euristicLab.Core;23 using HEAL.Attic; 25 24 26 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("9cbae9de-c128-45d8-9013-4ac70f641b08")] 27 27 /// <summary> 28 28 /// Interface to represent a neural network ensemble regression solution -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INeuralNetworkModel.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Optimization;23 22 using HeuristicLab.Problems.DataAnalysis; 24 using HeuristicLab.Core; 25 using System.Collections.Generic; 23 using HEAL.Attic; 26 24 27 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("21800d09-cdf8-4faf-a832-0a709ab84f33")] 28 27 /// <summary> 29 28 /// Interface to represent a neural network model for either regression or classification -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INeuralNetworkRegressionSolution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Optimization;23 22 using HeuristicLab.Problems.DataAnalysis; 24 using H euristicLab.Core;23 using HEAL.Attic; 25 24 26 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("f5a0df9f-1148-40d8-a13d-f5e114c2c95f")] 27 27 /// <summary> 28 28 /// Interface to represent a neural network regression solution -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IRandomForestClassificationSolution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Optimization;23 22 using HeuristicLab.Problems.DataAnalysis; 24 using H euristicLab.Core;23 using HEAL.Attic; 25 24 26 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("ff6d9203-3685-418b-b6cc-2312b50c4014")] 27 27 /// <summary> 28 28 /// Interface to represent a random forest classification solution -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IRandomForestModel.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 23 23 using HeuristicLab.Problems.DataAnalysis; 24 24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Algorithms.DataAnalysis { 27 [StorableType("627fb9cf-b3fe-4f9b-a76b-f0f1b7a31f0c")] 27 28 /// <summary> 28 29 /// Interface to represent a random forest model for either regression or classification -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IRandomForestRegressionSolution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using HeuristicLab.Problems.DataAnalysis; 23 using H euristicLab.Problems.DataAnalysis.Symbolic.Regression;23 using HEAL.Attic; 24 24 25 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("17e636cc-fa01-4844-8e48-bd7d525eac3a")] 26 27 /// <summary> 27 28 /// Interface to represent a random forest regression solution -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/ISupportVectorMachineModel.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Problems.DataAnalysis; 23 23 using LibSVM; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Algorithms.DataAnalysis { 27 [StorableType("5284987f-4f3e-43dd-9bc8-a8b3c7d952ce")] 26 28 /// <summary> 27 29 /// Interface to represent a support vector machine model -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/ISupportVectorMachineSolution.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using HeuristicLab.Optimization;23 22 using HeuristicLab.Problems.DataAnalysis; 24 using H euristicLab.Core;23 using HEAL.Attic; 25 24 26 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("598d2904-58e5-4a2f-8cd4-378ed3fa6132")] 27 27 /// <summary> 28 28 /// Interface to represent a support vector solution (either regression or classification)
Note: See TracChangeset
for help on using the changeset viewer.