Free cookie consent management tool by TermsFeed Policy Generator

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

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

#3075 Added equations of part II

File size: 724 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    public override string Description {
10      get {
11        return "Feynman instances ... descriptions follows: " + Environment.NewLine;
12      }
13    }
14
15    protected override int TrainingPartitionStart { get { return 0; } }
16    protected override int TrainingPartitionEnd { get { return 10000; } }
17    protected override int TestPartitionStart { get { return 10000; } }
18    protected override int TestPartitionEnd { get { return 20000; } }
19  }
20}
Note: See TracBrowser for help on using the repository browser.