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/Feynman29.cs

    r17966 r17973  
    3636
    3737    protected override string[] VariableNames {
    38       get { return new[] {"x1", "x2", "theta1", "theta2", noiseRatio == null ? "x" : "x_noise"}; }
     38      get { return noiseRatio == null ? new[] { "x1", "x2", "theta1", "theta2", "x" } : new[] { "x1", "x2", "theta1", "theta2", "x", "x_noise" }; }
    3939    }
    4040
     
    7171      }
    7272
    73       if (noiseRatio != null) {
    74         var x_noise     = new List<double>();
    75         var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * x.StandardDeviationPop();
    76         x_noise.AddRange(x.Select(md => md + NormalDistributedRandomPolar.NextDouble(rand, 0, sigma_noise)));
    77         data.Remove(x);
    78         data.Add(x_noise);
    79       }
     73      var targetNoise = GetNoisyTarget(x, rand);
     74      if (targetNoise != null) data.Add(targetNoise);
    8075
    8176      return data;
Note: See TracChangeset for help on using the changeset viewer.