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

    r17966 r17973  
    3636
    3737    protected override string[] VariableNames {
    38       get { return new[] {"G", "k_f", "r", "H_G", "c", noiseRatio == null ? "rho_0" : "rho_0_noise"}; }
     38      get { return noiseRatio == null ? new[] { "G", "k_f", "r", "H_G", "c", "rho_0" } : new[] { "G", "k_f", "r", "H_G", "c", "rho_0", "rho_0_noise" }; }
    3939    }
    4040
     
    7272      }
    7373
    74       if (noiseRatio != null) {
    75         var rho_0_noise = new List<double>();
    76         var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * rho_0.StandardDeviationPop();
    77         rho_0_noise.AddRange(rho_0.Select(md => md + NormalDistributedRandomPolar.NextDouble(rand, 0, sigma_noise)));
    78         data.Remove(rho_0);
    79         data.Add(rho_0_noise);
    80       }
     74      var targetNoise = GetNoisyTarget(rho_0, rand);
     75      if (targetNoise != null) data.Add(targetNoise);
    8176
    8277      return data;
Note: See TracChangeset for help on using the changeset viewer.