Changeset 18086 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman63.cs
- Timestamp:
- 11/19/21 16:07:45 (3 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman63.cs
r17678 r18086 28 28 public override string Name { 29 29 get { 30 return string.Format("II.11.20 n_rho*p_d**2*Ef/(3*kb*T) | {0} samples | {1}", trainingSamples,30 return string.Format("II.11.20 n_rho*p_d**2*Ef/(3*kb*T) | {0}", 31 31 noiseRatio == null ? "no noise" : string.Format(System.Globalization.CultureInfo.InvariantCulture, "noise={0:g}",noiseRatio)); 32 32 } … … 36 36 37 37 protected override string[] VariableNames { 38 get { return n ew[] {"n_rho", "p_d", "Ef", "kb", "T", noiseRatio == null ? "Pol" : "Pol_noise"}; }38 get { return noiseRatio == null ? new[] { "n_rho", "p_d", "Ef", "kb", "T", "Pol" } : new[] { "n_rho", "p_d", "Ef", "kb", "T", "Pol", "Pol_noise" }; } 39 39 } 40 40 … … 72 72 } 73 73 74 if (noiseRatio != null) { 75 var Pol_noise = new List<double>(); 76 var sigma_noise = (double) noiseRatio * Pol.StandardDeviationPop(); 77 Pol_noise.AddRange(Pol.Select(md => md + NormalDistributedRandom.NextDouble(rand, 0, sigma_noise))); 78 data.Remove(Pol); 79 data.Add(Pol_noise); 80 } 74 var targetNoise = ValueGenerator.GenerateNoise(Pol, rand, noiseRatio); 75 if (targetNoise != null) data.Add(targetNoise); 81 76 82 77 return data;
Note: See TracChangeset
for help on using the changeset viewer.