Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman64.cs @ 17678

Last change on this file since 17678 was 17678, checked in by gkronber, 4 years ago

#3075: changed title for noise part

File size: 3.2 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 Feynman64 : FeynmanDescriptor {
9    private readonly int testSamples;
10    private readonly int trainingSamples;
11
12    public Feynman64() : this((int) DateTime.Now.Ticks, 10000, 10000, null) { }
13
14    public Feynman64(int seed) {
15      Seed            = seed;
16      trainingSamples = 10000;
17      testSamples     = 10000;
18      noiseRatio      = null;
19    }
20
21    public Feynman64(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("II.11.27 n*alpha/(1-(n*alpha/3))*epsilon*Ef | {0} samples | {1}",
31          trainingSamples, 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 ? "Pol" : "Pol_noise"; } }
36
37    protected override string[] VariableNames {
38      get { return new[] {"n", "alpha", "epsilon", "Ef", noiseRatio == null ? "Pol" : "Pol_noise"}; }
39    }
40
41    protected override string[] AllowedInputVariables { get { return new[] {"n", "alpha", "epsilon", "Ef"}; } }
42
43    public int Seed { get; private set; }
44
45    protected override int TrainingPartitionStart { get { return 0; } }
46    protected override int TrainingPartitionEnd { get { return trainingSamples; } }
47    protected override int TestPartitionStart { get { return trainingSamples; } }
48    protected override int TestPartitionEnd { get { return trainingSamples + testSamples; } }
49
50    protected override List<List<double>> GenerateValues() {
51      var rand = new MersenneTwister((uint) Seed);
52
53      var data    = new List<List<double>>();
54      var n       = ValueGenerator.GenerateUniformDistributedValues(rand.Next(), TestPartitionEnd, 0, 1).ToList();
55      var alpha   = ValueGenerator.GenerateUniformDistributedValues(rand.Next(), TestPartitionEnd, 0, 1).ToList();
56      var epsilon = ValueGenerator.GenerateUniformDistributedValues(rand.Next(), TestPartitionEnd, 1, 2).ToList();
57      var Ef      = ValueGenerator.GenerateUniformDistributedValues(rand.Next(), TestPartitionEnd, 1, 2).ToList();
58
59      var Pol = new List<double>();
60
61      data.Add(n);
62      data.Add(alpha);
63      data.Add(epsilon);
64      data.Add(Ef);
65      data.Add(Pol);
66
67      for (var i = 0; i < n.Count; i++) {
68        var res = n[i] * alpha[i] / (1 - n[i] * alpha[i] / 3) * epsilon[i] * Ef[i];
69        Pol.Add(res);
70      }
71
72      if (noiseRatio != null) {
73        var Pol_noise   = new List<double>();
74        var sigma_noise = (double) noiseRatio * Pol.StandardDeviationPop();
75        Pol_noise.AddRange(Pol.Select(md => md + NormalDistributedRandom.NextDouble(rand, 0, sigma_noise)));
76        data.Remove(Pol);
77        data.Add(Pol_noise);
78      }
79
80      return data;
81    }
82  }
83}
Note: See TracBrowser for help on using the repository browser.