[17647] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using HeuristicLab.Common;
|
---|
| 5 | using HeuristicLab.Random;
|
---|
| 6 |
|
---|
| 7 | namespace HeuristicLab.Problems.Instances.DataAnalysis {
|
---|
| 8 | public class Feynman3 : FeynmanDescriptor {
|
---|
| 9 | private readonly int testSamples;
|
---|
| 10 | private readonly int trainingSamples;
|
---|
| 11 |
|
---|
| 12 | public Feynman3() : this((int) DateTime.Now.Ticks, 10000, 10000, null) { }
|
---|
| 13 |
|
---|
| 14 | public Feynman3(int seed) {
|
---|
| 15 | Seed = seed;
|
---|
| 16 | trainingSamples = 10000;
|
---|
| 17 | testSamples = 10000;
|
---|
| 18 | noiseRatio = null;
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | public Feynman3(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(
|
---|
[17805] | 31 | "I.6.20b exp(-((theta-theta1)/sigma)**2/2)/(sqrt(2*pi)*sigma) | {0}",
|
---|
| 32 | noiseRatio == null ? "no noise" : string.Format(System.Globalization.CultureInfo.InvariantCulture, "noise={0:g}",noiseRatio));
|
---|
[17647] | 33 | }
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 | protected override string TargetVariable { get { return noiseRatio == null ? "f" : "f_noise"; } }
|
---|
| 37 |
|
---|
| 38 | protected override string[] VariableNames {
|
---|
| 39 | get { return new[] {"sigma", "theta", "theta1", noiseRatio == null ? "f" : "f_noise"}; }
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | protected override string[] AllowedInputVariables { get { return new[] {"sigma", "theta", "theta1"}; } }
|
---|
| 43 |
|
---|
| 44 | public int Seed { get; private set; }
|
---|
| 45 |
|
---|
| 46 | protected override int TrainingPartitionStart { get { return 0; } }
|
---|
| 47 | protected override int TrainingPartitionEnd { get { return trainingSamples; } }
|
---|
| 48 | protected override int TestPartitionStart { get { return trainingSamples; } }
|
---|
| 49 | protected override int TestPartitionEnd { get { return trainingSamples + testSamples; } }
|
---|
| 50 |
|
---|
| 51 | protected override List<List<double>> GenerateValues() {
|
---|
| 52 | var rand = new MersenneTwister((uint) Seed);
|
---|
| 53 |
|
---|
| 54 | var data = new List<List<double>>();
|
---|
| 55 | var sigma = ValueGenerator.GenerateUniformDistributedValues(rand.Next(), TestPartitionEnd, 1, 3).ToList();
|
---|
| 56 | var theta = ValueGenerator.GenerateUniformDistributedValues(rand.Next(), TestPartitionEnd, 1, 3).ToList();
|
---|
| 57 | var theta1 = ValueGenerator.GenerateUniformDistributedValues(rand.Next(), TestPartitionEnd, 1, 3).ToList();
|
---|
| 58 |
|
---|
| 59 | var f = new List<double>();
|
---|
| 60 |
|
---|
| 61 | data.Add(sigma);
|
---|
| 62 | data.Add(theta);
|
---|
| 63 | data.Add(theta1);
|
---|
| 64 | data.Add(f);
|
---|
| 65 |
|
---|
| 66 | for (var i = 0; i < sigma.Count; i++) {
|
---|
[17659] | 67 | var res = Math.Exp(-Math.Pow((theta[i] - theta1[i]) / sigma[i], 2) / 2) / (Math.Sqrt(2 * Math.PI) * sigma[i]);
|
---|
[17647] | 68 | f.Add(res);
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | if (noiseRatio != null) {
|
---|
| 72 | var f_noise = new List<double>();
|
---|
[17805] | 73 | var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * f.StandardDeviationPop();
|
---|
[17647] | 74 | f_noise.AddRange(f.Select(md => md + NormalDistributedRandom.NextDouble(rand, 0, sigma_noise)));
|
---|
| 75 | data.Remove(f);
|
---|
| 76 | data.Add(f_noise);
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | return data;
|
---|
| 80 | }
|
---|
| 81 | }
|
---|
| 82 | } |
---|