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

    r17966 r17973  
    3636
    3737    protected override string[] VariableNames {
    38       get { return new[] {"m1", "m2", "G", "x1", "x2", "y1", "y2", "z1", "z2", noiseRatio == null ? "F" : "F_noise"}; }
     38      get { return noiseRatio == null ? new[] { "m1", "m2", "G", "x1", "x2", "y1", "y2", "z1", "z2", "F" } : new[] { "m1", "m2", "G", "x1", "x2", "y1", "y2", "z1", "z2", "F", "F_noise" }; }
    3939    }
    4040
     
    8383      }
    8484
    85       if (noiseRatio != null) {
    86         var F_noise     = new List<double>();
    87         var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * F.StandardDeviationPop();
    88         F_noise.AddRange(F.Select(md => md + NormalDistributedRandomPolar.NextDouble(rand, 0, sigma_noise)));
    89         data.Remove(F);
    90         data.Add(F_noise);
    91       }
     85      var targetNoise = GetNoisyTarget(F, rand);
     86      if (targetNoise != null) data.Add(targetNoise);
    9287
    9388      return data;
Note: See TracChangeset for help on using the changeset viewer.