Changeset 16240 for branches/2915-AbsoluteSymbol/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/CF1.cs
- Timestamp:
- 10/18/18 16:16:31 (6 years ago)
- Location:
- branches/2915-AbsoluteSymbol
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2915-AbsoluteSymbol
- Property svn:mergeinfo changed
-
branches/2915-AbsoluteSymbol/HeuristicLab.Problems.Instances.DataAnalysis
- Property svn:mergeinfo changed
/branches/2839_HiveProjectManagement/HeuristicLab.Problems.Instances.DataAnalysis (added) merged: 16057 /trunk/HeuristicLab.Problems.Instances.DataAnalysis (added) merged: 15951-15952,16117,16169
- Property svn:mergeinfo changed
-
branches/2915-AbsoluteSymbol/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/CF1.cs
r15855 r16240 22 22 namespace HeuristicLab.Problems.Instances.DataAnalysis { 23 23 public class CF1 : ResourceRegressionDataDescriptor { 24 public CF1( string resourceName) : base(resourceName) { }25 public override string Name { get { return "CF1"; } } 24 public CF1() : base("CF1.csv") { } 25 public override string Name { get { return "CF1"; } } 26 26 public override string Description { 27 27 get { … … 34 34 protected override string TargetVariable { get { return "Cf1"; } } 35 35 protected override string[] VariableNames { 36 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" 37 }; } 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 } 38 40 } 39 41 40 42 protected override string[] AllowedInputVariables { 41 get { return new string[] { "Material_Cat", 43 get { 44 return new string[] { "Material_Cat", 42 45 "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16", 43 46 "Material", "Grooving", "Oil", 44 "x17", "x20", "x22" }; } 47 "x17", "x20", "x22" }; 48 } 45 49 } 46 50 protected override int TrainingPartitionStart { get { return 0; } }
Note: See TracChangeset
for help on using the changeset viewer.