Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/FeynmanDescriptor.cs @ 17647

Last change on this file since 17647 was 17647, checked in by chaider, 4 years ago

#3075

  • Added possibility to add noise to the feynman instances
  • Sorted instances by name
File size: 754 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Problems.Instances.DataAnalysis {
8  public abstract class FeynmanDescriptor : ArtificialRegressionDataDescriptor {
9    protected double? noiseRatio;
10    public override string Description {
11      get {
12        return "Feynman instances ... descriptions follows: " + Environment.NewLine;
13      }
14    }
15
16    protected override int TrainingPartitionStart { get { return 0; } }
17    protected override int TrainingPartitionEnd { get { return 100; } }
18    protected override int TestPartitionStart { get { return 100; } }
19    protected override int TestPartitionEnd { get { return 200; } }
20  }
21}
Note: See TracBrowser for help on using the repository browser.