Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/21 14:29:30 (3 years ago)
Author:
chaider
Message:

#3075

  • Added target without noise to noisy instances
  • Moved noise calculation to descriptor
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman82.cs

    r17966 r17973  
    3737
    3838    protected override string[] VariableNames {
    39       get { return new[] {"mom", "B", "kb", "T", "alpha", "epsilon", "c", "M", noiseRatio == null ? "f" : "f_noise"}; }
     39      get { return noiseRatio == null ? new[] { "mom", "B", "kb", "T", "alpha", "epsilon", "c", "M", "f" } : new[] { "mom", "B", "kb", "T", "alpha", "epsilon", "c", "M", "f", "f_noise" }; }
    4040    }
    4141
     
    8282      }
    8383
    84       if (noiseRatio != null) {
    85         var f_noise     = new List<double>();
    86         var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * f.StandardDeviationPop();
    87         f_noise.AddRange(f.Select(md => md + NormalDistributedRandomPolar.NextDouble(rand, 0, sigma_noise)));
    88         data.Remove(f);
    89         data.Add(f_noise);
    90       }
     84      var targetNoise = GetNoisyTarget(f, rand);
     85      if (targetNoise != null) data.Add(targetNoise);
    9186
    9287      return data;
Note: See TracChangeset for help on using the changeset viewer.