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