Changeset 18086 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman75.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/Feynman75.cs
r17678 r18086 28 28 public override string Name { 29 29 get { 30 return string.Format("II.34.2a q*v/(2*pi*r) | {0} samples | {1}", trainingSamples,30 return string.Format("II.34.2a q*v/(2*pi*r) | {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[] {"q", "v", "r", noiseRatio == null ? "I" : "I_noise"}; }38 get { return noiseRatio == null ? new[] { "q", "v", "r", "I" } : new[] { "q", "v", "r", "I", "I_noise" }; } 39 39 } 40 40 … … 68 68 } 69 69 70 if (noiseRatio != null) { 71 var I_noise = new List<double>(); 72 var sigma_noise = (double) noiseRatio * I.StandardDeviationPop(); 73 I_noise.AddRange(I.Select(md => md + NormalDistributedRandom.NextDouble(rand, 0, sigma_noise))); 74 data.Remove(I); 75 data.Add(I_noise); 76 } 70 var targetNoise = ValueGenerator.GenerateNoise(I, rand, noiseRatio); 71 if (targetNoise != null) data.Add(targetNoise); 77 72 78 73 return data;
Note: See TracChangeset
for help on using the changeset viewer.