- Timestamp:
- 09/20/18 15:56:23 (6 years ago)
- Location:
- stable
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk merged: 15853,15855,16169
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.Instances.DataAnalysis
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Problems.Instances.DataAnalysis merged: 15853,15855,16169
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/ChemicalOne.cs
r15584 r16170 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class ChemicalOne : ResourceRegressionDataDescriptor { 24 public ChemicalOne() : base("Chemical-I.csv") { } 24 25 public override string Name { get { return "Chemical-I"; } } 25 26 public override string Description { get { return ""; } } -
stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/Housing.cs
r15584 r16170 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class Housing : ResourceRegressionDataDescriptor { 24 public Housing() : base("Housing.csv") { } 24 25 public override string Name { get { return "Housing"; } } 25 26 public override string Description { get { return ""; } } -
stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/Powermeter.cs
r15584 r16170 24 24 namespace HeuristicLab.Problems.Instances.DataAnalysis { 25 25 public class Powermeter : ResourceRegressionDataDescriptor { 26 public Powermeter() : base("Powermeter.txt") { } 26 27 public override string Name { get { return "Powermeter"; } } 27 28 public override string Description { -
stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/RealWorldRegressionInstanceProvider.cs
r15584 r16170 47 47 public override IEnumerable<IDataDescriptor> GetDataDescriptors() { 48 48 List<ResourceRegressionDataDescriptor> descriptorList = new List<ResourceRegressionDataDescriptor>(); 49 descriptorList.Add(new ChemicalOne() { ResourceName = "Chemical-I.csv" });50 descriptorList.Add(new Housing() { ResourceName = "Housing.csv" });51 descriptorList.Add(new Tower() { ResourceName = "Tower.txt" });52 descriptorList.Add(new Powermeter() { ResourceName = "Powermeter.txt" });53 descriptorList.Add(new SARCOS() { ResourceName = "SARCOS - Inverse Dynamics.txt" });49 descriptorList.Add(new ChemicalOne()); 50 descriptorList.Add(new Housing()); 51 descriptorList.Add(new Tower()); 52 descriptorList.Add(new Powermeter()); 53 descriptorList.Add(new SARCOS()); 54 54 return descriptorList; 55 55 } -
stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/SARCOS.cs
r15584 r16170 24 24 namespace HeuristicLab.Problems.Instances.DataAnalysis { 25 25 public class SARCOS : ResourceRegressionDataDescriptor { 26 public SARCOS() : base("SARCOS - Inverse Dynamics.txt") { } 26 27 public override string Name { get { return "SARCOS - Inverse Dynamics"; } } 27 28 public override string Description { -
stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/Tower.cs
r15584 r16170 24 24 namespace HeuristicLab.Problems.Instances.DataAnalysis { 25 25 public class Tower : ResourceRegressionDataDescriptor { 26 public Tower() : base("Tower.txt") { } 26 27 public override string Name { get { return "Tower"; } } 27 28 public override string Description {
Note: See TracChangeset
for help on using the changeset viewer.