Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/21 14:29:30 (4 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/Feynman67.cs

    r17966 r17973  
    3636
    3737    protected override string[] VariableNames {
    38       get { return new[] {"rho_c_0", "v", "c", noiseRatio == null ? "rho_c" : "rho_c_noise"}; }
     38      get { return noiseRatio == null ? new[] { "rho_c_0", "v", "c", "rho_c" } : new[] { "rho_c_0", "v", "c", "rho_c", "rho_c_noise" }; }
    3939    }
    4040
     
    6868      }
    6969
    70       if (noiseRatio != null) {
    71         var rho_c_noise = new List<double>();
    72         var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * rho_c.StandardDeviationPop();
    73         rho_c_noise.AddRange(rho_c.Select(md => md + NormalDistributedRandomPolar.NextDouble(rand, 0, sigma_noise)));
    74         data.Remove(rho_c);
    75         data.Add(rho_c_noise);
    76       }
     70      var targetNoise = GetNoisyTarget(rho_c, rand);
     71      if (targetNoise != null) data.Add(targetNoise);
    7772
    7873      return data;
Note: See TracChangeset for help on using the changeset viewer.