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

    r17966 r17973  
    3636
    3737    protected override string[] VariableNames {
    38       get { return new[] {"mu", "Nn", noiseRatio == null ? "F" : "F_noise"}; }
     38      get { return noiseRatio == null ? new[] { "mu", "Nn", "F" } : new[] { "mu", "Nn", "F", "F_noise" }; }
    3939    }
    4040
     
    6666      }
    6767
    68       if (noiseRatio != null) {
    69         var F_noise     = new List<double>();
    70         var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * F.StandardDeviationPop();
    71         F_noise.AddRange(F.Select(md => md + NormalDistributedRandomPolar.NextDouble(rand, 0, sigma_noise)));
    72         data.Remove(F);
    73         data.Add(F_noise);
    74       }
     68      var targetNoise = GetNoisyTarget(F, rand);
     69      if (targetNoise != null) data.Add(targetNoise);
    7570
    7671      return data;
Note: See TracChangeset for help on using the changeset viewer.