Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/20/18 15:56:23 (6 years ago)
Author:
gkronber
Message:

#2908: merged r15853,r15855,r16169 from trunk to stable

Location:
stable
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.Instances.DataAnalysis

  • stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/CF1.cs

    r15584 r16170  
    2222namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2323  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"; } }   
    2526    public override string Description {
    2627      get {
     
    3334    protected override string TargetVariable { get { return "Cf1"; } }
    3435    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      }
    3740    }
    3841
    3942    protected override string[] AllowedInputVariables {
    40       get { return new string[] { "Material_Cat",
     43      get {
     44        return new string[] { "Material_Cat",
    4145        "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16",
    4246        "Material", "Grooving", "Oil",
    43         "x17", "x20", "x22" }; }
     47        "x17", "x20", "x22" };
     48      }
    4449    }
    4550    protected override int TrainingPartitionStart { get { return 0; } }
  • stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/CF2.cs

    r15584 r16170  
    2222namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2323  public class CF2 : ResourceRegressionDataDescriptor {
     24    public CF2() : base("CF2.csv") { }
    2425    public override string Name { get { return "CF2"; } }
    2526    public override string Description {
  • stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/CF3.cs

    r15584 r16170  
    2222namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2323  public class CF3 : ResourceRegressionDataDescriptor {
     24    public CF3() : base("CF3.csv") { }
    2425    public override string Name { get { return "CF3"; } }
    2526    public override string Description {
  • stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/CF4.cs

    r15584 r16170  
    2222namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2323  public class CF4 : ResourceRegressionDataDescriptor {
     24    public CF4() : base("CF4.csv") { }
    2425    public override string Name { get { return "CF4"; } }
    2526    public override string Description {
  • stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/MibaFrictionRegressionInstanceProvider.cs

    r15584 r16170  
    4747    public override IEnumerable<IDataDescriptor> GetDataDescriptors() {
    4848      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());
    5858
    5959      return descriptorList;
  • stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/NvhRating.cs

    r15584 r16170  
    2222namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2323  public class NvhRating : ResourceRegressionDataDescriptor {
     24    public NvhRating() : base("NvhRating.csv") { }
    2425    public override string Name { get { return "NvhRating"; } }
    2526    public override string Description {
  • stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/Temp1.cs

    r15584 r16170  
    2222namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2323  public class Temp1 : ResourceRegressionDataDescriptor {
     24    public Temp1() : base("Temp1.csv") { }
    2425    public override string Name { get { return "Temp1"; } }
    2526    public override string Description {
  • stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/Temp2.cs

    r15584 r16170  
    2222namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2323  public class Temp2 : ResourceRegressionDataDescriptor {
     24    public Temp2() : base("Temp2.csv") { }
    2425    public override string Name { get { return "Temp2"; } }
    2526    public override string Description {
  • stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/Wear1.cs

    r15584 r16170  
    2222namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2323  public class Wear1 : ResourceRegressionDataDescriptor {
     24    public Wear1() : base("Wear1.csv") { }
    2425    public override string Name { get { return "Wear1"; } }
    2526    public override string Description {
     
    3233    }
    3334    protected override string TargetVariable { get { return "Wear1"; } }
     35
    3436    protected override string[] VariableNames {
    3537      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"
  • stable/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/MibaFriction/Wear2.cs

    r15584 r16170  
    2222namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2323  public class Wear2 : ResourceRegressionDataDescriptor {
     24    public Wear2() : base("Wear2.csv") { }
    2425    public override string Name { get { return "Wear2"; } }
    2526    public override string Description {
Note: See TracChangeset for help on using the changeset viewer.