Changeset 16388 for branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction
- Timestamp:
- 12/15/18 12:36:08 (6 years ago)
- Location:
- branches/2892_LR-prediction-intervals
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2892_LR-prediction-intervals
- Property svn:ignore
-
old new 1 *.docstates 2 *.psess 3 *.resharper 4 *.suo 5 *.user 6 *.vsp 7 Doxygen 8 FxCopResults.txt 9 Google.ProtocolBuffers-0.9.1.dll 10 Google.ProtocolBuffers-2.4.1.473.dll 11 HeuristicLab 3.3.5.1.ReSharper.user 12 HeuristicLab 3.3.6.0.ReSharper.user 13 HeuristicLab.4.5.resharper.user 14 HeuristicLab.ExtLibs.6.0.ReSharper.user 15 HeuristicLab.Scripting.Development 16 HeuristicLab.resharper.user 17 ProtoGen.exe 1 18 TestResults 19 _ReSharper.HeuristicLab 20 _ReSharper.HeuristicLab 3.3 21 _ReSharper.HeuristicLab 3.3 Tests 22 _ReSharper.HeuristicLab.ExtLibs 23 bin 24 protoc.exe 25 obj 26 .vs
-
- Property svn:mergeinfo changed
-
Property
svn:global-ignores
set to
*.nuget
packages
- Property svn:ignore
-
branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis
- Property svn:mergeinfo changed
-
branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/CF1.cs
r15583 r16388 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class CF1 : ResourceRegressionDataDescriptor { 24 public override string Name { get { return "CF1"; } } 24 public CF1() : base("CF1.csv") { } 25 public override string Name { get { return "CF1"; } } 25 26 public override string Description { 26 27 get { … … 33 34 protected override string TargetVariable { get { return "Cf1"; } } 34 35 protected override string[] VariableNames { 35 get { return new string[] { "Partition", "Source1", "Source2", "x1", "Material_Cat", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "Material", "Grooving", "Oil", "x17", "x18", "x19", "x20", "x21", "x22", "Cf1" 36 }; } 36 get { 37 return new string[] { "Partition", "Source1", "Source2", "x1", "Material_Cat", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "Material", "Grooving", "Oil", "x17", "x18", "x19", "x20", "x21", "x22", "Cf1" 38 }; 39 } 37 40 } 38 41 39 42 protected override string[] AllowedInputVariables { 40 get { return new string[] { "Material_Cat", 43 get { 44 return new string[] { "Material_Cat", 41 45 "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16", 42 46 "Material", "Grooving", "Oil", 43 "x17", "x20", "x22" }; } 47 "x17", "x20", "x22" }; 48 } 44 49 } 45 50 protected override int TrainingPartitionStart { get { return 0; } } -
branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/CF2.cs
r15583 r16388 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class CF2 : ResourceRegressionDataDescriptor { 24 public CF2() : base("CF2.csv") { } 24 25 public override string Name { get { return "CF2"; } } 25 26 public override string Description { -
branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/CF3.cs
r15583 r16388 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class CF3 : ResourceRegressionDataDescriptor { 24 public CF3() : base("CF3.csv") { } 24 25 public override string Name { get { return "CF3"; } } 25 26 public override string Description { -
branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/CF4.cs
r15583 r16388 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class CF4 : ResourceRegressionDataDescriptor { 24 public CF4() : base("CF4.csv") { } 24 25 public override string Name { get { return "CF4"; } } 25 26 public override string Description { -
branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/MibaFrictionRegressionInstanceProvider.cs
r15583 r16388 47 47 public override IEnumerable<IDataDescriptor> GetDataDescriptors() { 48 48 List<ResourceRegressionDataDescriptor> descriptorList = new List<ResourceRegressionDataDescriptor>(); 49 descriptorList.Add(new CF1() { ResourceName = "CF1.csv" });50 descriptorList.Add(new CF2() { ResourceName = "CF2.csv" });51 descriptorList.Add(new CF3() { ResourceName = "CF3.csv" });52 descriptorList.Add(new CF4() { ResourceName = "CF4.csv" });53 descriptorList.Add(new NvhRating() { ResourceName = "NvhRating.csv" });54 descriptorList.Add(new Temp1() { ResourceName = "Temp1.csv" });55 descriptorList.Add(new Temp2() { ResourceName = "Temp2.csv" });56 descriptorList.Add(new Wear1() { ResourceName = "Wear1.csv" });57 descriptorList.Add(new Wear2() { ResourceName = "Wear2.csv" });49 descriptorList.Add(new CF1()); 50 descriptorList.Add(new CF2()); 51 descriptorList.Add(new CF3()); 52 descriptorList.Add(new CF4()); 53 descriptorList.Add(new NvhRating()); 54 descriptorList.Add(new Temp1()); 55 descriptorList.Add(new Temp2()); 56 descriptorList.Add(new Wear1()); 57 descriptorList.Add(new Wear2()); 58 58 59 59 return descriptorList; -
branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/NvhRating.cs
r15583 r16388 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class NvhRating : ResourceRegressionDataDescriptor { 24 public NvhRating() : base("NvhRating.csv") { } 24 25 public override string Name { get { return "NvhRating"; } } 25 26 public override string Description { -
branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/Temp1.cs
r15583 r16388 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class Temp1 : ResourceRegressionDataDescriptor { 24 public Temp1() : base("Temp1.csv") { } 24 25 public override string Name { get { return "Temp1"; } } 25 26 public override string Description { -
branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/Temp2.cs
r15583 r16388 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class Temp2 : ResourceRegressionDataDescriptor { 24 public Temp2() : base("Temp2.csv") { } 24 25 public override string Name { get { return "Temp2"; } } 25 26 public override string Description { -
branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/Wear1.cs
r15583 r16388 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class Wear1 : ResourceRegressionDataDescriptor { 24 public Wear1() : base("Wear1.csv") { } 24 25 public override string Name { get { return "Wear1"; } } 25 26 public override string Description { … … 32 33 } 33 34 protected override string TargetVariable { get { return "Wear1"; } } 35 34 36 protected override string[] VariableNames { 35 37 get { return new string[] { "Partition", "Source1", "Source2", "x1", "Material_Cat", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "Material", "Grooving", "Oil", "x17", "x18", "x19", "x20", "x21", "x22", "Wear1" -
branches/2892_LR-prediction-intervals/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/Wear2.cs
r15583 r16388 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class Wear2 : ResourceRegressionDataDescriptor { 24 public Wear2() : base("Wear2.csv") { } 24 25 public override string Name { get { return "Wear2"; } } 25 26 public override string Description {
Note: See TracChangeset
for help on using the changeset viewer.