Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman92.cs @ 17805

Last change on this file since 17805 was 17805, checked in by gkronber, 3 years ago

#3075 Use the same noise levels and calculation as in our experiments for the IEEE TeC paper. Reordered instances by name first and noise level second. Removed number of samples from the name.

File size: 2.7 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using HeuristicLab.Common;
5using HeuristicLab.Random;
6
7namespace HeuristicLab.Problems.Instances.DataAnalysis {
8  public class Feynman92 : FeynmanDescriptor {
9    private readonly int testSamples;
10    private readonly int trainingSamples;
11
12    public Feynman92() : this((int) DateTime.Now.Ticks, 10000, 10000, null) { }
13
14    public Feynman92(int seed) {
15      Seed            = seed;
16      trainingSamples = 10000;
17      testSamples     = 10000;
18      noiseRatio      = null;
19    }
20
21    public Feynman92(int seed, int trainingSamples, int testSamples, double? noiseRatio) {
22      Seed                 = seed;
23      this.trainingSamples = trainingSamples;
24      this.testSamples     = testSamples;
25      this.noiseRatio      = noiseRatio;
26    }
27
28    public override string Name {
29      get {
30        return string.Format("III.12.43 n*h | {0}",
31          noiseRatio == null ? "no noise" : string.Format(System.Globalization.CultureInfo.InvariantCulture, "noise={0:g}",noiseRatio));
32      }
33    }
34
35    protected override string TargetVariable { get { return noiseRatio == null ? "L" : "L_noise"; } }
36    protected override string[] VariableNames { get { return new[] {"n", "h", noiseRatio == null ? "L" : "L_noise"}; } }
37    protected override string[] AllowedInputVariables { get { return new[] {"n", "h"}; } }
38
39    public int Seed { get; private set; }
40
41    protected override int TrainingPartitionStart { get { return 0; } }
42    protected override int TrainingPartitionEnd { get { return trainingSamples; } }
43    protected override int TestPartitionStart { get { return trainingSamples; } }
44    protected override int TestPartitionEnd { get { return trainingSamples + testSamples; } }
45
46    protected override List<List<double>> GenerateValues() {
47      var rand = new MersenneTwister((uint) Seed);
48
49      var data = new List<List<double>>();
50      var n    = ValueGenerator.GenerateUniformDistributedValues(rand.Next(), TestPartitionEnd, 1, 5).ToList();
51      var h    = ValueGenerator.GenerateUniformDistributedValues(rand.Next(), TestPartitionEnd, 1, 5).ToList();
52
53      var L = new List<double>();
54
55      data.Add(n);
56      data.Add(h);
57      data.Add(L);
58
59      for (var i = 0; i < n.Count; i++) {
60        var res = n[i] * h[i];
61        L.Add(res);
62      }
63
64      if (noiseRatio != null) {
65        var L_noise     = new List<double>();
66        var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * L.StandardDeviationPop();
67        L_noise.AddRange(L.Select(md => md + NormalDistributedRandom.NextDouble(rand, 0, sigma_noise)));
68        data.Remove(L);
69        data.Add(L_noise);
70      }
71
72      return data;
73    }
74  }
75}
Note: See TracBrowser for help on using the repository browser.