Last change
on this file since 17649 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 | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 |
|
---|
7 | namespace 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.