Changeset 17639
- Timestamp:
- 06/30/20 13:30:54 (4 years ago)
- Location:
- branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3
- Files:
-
- 38 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/HeuristicLab.Problems.Instances.DataAnalysis-3.3.csproj
r17638 r17639 157 157 <Compile Include="Regression\FeatureSelection\FeatureSelection.cs" /> 158 158 <Compile Include="Regression\FeatureSelection\FeatureSelectionInstanceProvider.cs" /> 159 <Compile Include="Regression\Feynman\Feynman23.cs" /> 160 <Compile Include="Regression\Feynman\Feynman22.cs" /> 161 <Compile Include="Regression\Feynman\Feynman21.cs" /> 162 <Compile Include="Regression\Feynman\Feynman20.cs" /> 163 <Compile Include="Regression\Feynman\Feynman19.cs" /> 164 <Compile Include="Regression\Feynman\Feynman18.cs" /> 165 <Compile Include="Regression\Feynman\Feynman17.cs" /> 166 <Compile Include="Regression\Feynman\Feynman16.cs" /> 167 <Compile Include="Regression\Feynman\Feynman15.cs" /> 168 <Compile Include="Regression\Feynman\Feynman14.cs" /> 169 <Compile Include="Regression\Feynman\Feynman24.cs" /> 170 <Compile Include="Regression\Feynman\Feynman25.cs" /> 171 <Compile Include="Regression\Feynman\Feynman26.cs" /> 172 <Compile Include="Regression\Feynman\Feynman27.cs" /> 173 <Compile Include="Regression\Feynman\Feynman28.cs" /> 174 <Compile Include="Regression\Feynman\Feynman29.cs" /> 175 <Compile Include="Regression\Feynman\Feynman30.cs" /> 176 <Compile Include="Regression\Feynman\Feynman31.cs" /> 177 <Compile Include="Regression\Feynman\Feynman32.cs" /> 178 <Compile Include="Regression\Feynman\Feynman33.cs" /> 179 <Compile Include="Regression\Feynman\Feynman34.cs" /> 180 <Compile Include="Regression\Feynman\Feynman35.cs" /> 181 <Compile Include="Regression\Feynman\Feynman36.cs" /> 182 <Compile Include="Regression\Feynman\Feynman37.cs" /> 183 <Compile Include="Regression\Feynman\Feynman38.cs" /> 184 <Compile Include="Regression\Feynman\Feynman39.cs" /> 185 <Compile Include="Regression\Feynman\Feynman40.cs" /> 186 <Compile Include="Regression\Feynman\Feynman41.cs" /> 187 <Compile Include="Regression\Feynman\Feynman42.cs" /> 188 <Compile Include="Regression\Feynman\Feynman43.cs" /> 189 <Compile Include="Regression\Feynman\Feynman44.cs" /> 190 <Compile Include="Regression\Feynman\Feynman45.cs" /> 191 <Compile Include="Regression\Feynman\Feynman46.cs" /> 192 <Compile Include="Regression\Feynman\Feynman47.cs" /> 193 <Compile Include="Regression\Feynman\Feynman48.cs" /> 194 <Compile Include="Regression\Feynman\Feynman49.cs" /> 195 <Compile Include="Regression\Feynman\Feynman50.cs" /> 196 <Compile Include="Regression\Feynman\Feynman51.cs" /> 159 197 <Compile Include="Regression\Feynman\Feynman9.cs" /> 160 198 <Compile Include="Regression\Feynman\Feynman13.cs" /> -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman2.cs
r17638 r17639 14 14 protected override string[] VariableNames { get { return new string[] { "sigma", "theta", "f"}; } } 15 15 protected override string[] AllowedInputVariables { get { return new string[] { "sigma", "theta" }; } } 16 17 protected override int TrainingPartitionStart { get { return 0; } }18 protected override int TrainingPartitionEnd { get { return 80; } }19 protected override int TestPartitionStart { get { return 80; } }20 protected override int TestPartitionEnd { get { return 100; } }21 16 22 17 public int Seed { get; private set; } -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman3.cs
r17638 r17639 14 14 protected override string[] VariableNames { get { return new string[] { "sigma", "theta", "theta1", "f"}; } } 15 15 protected override string[] AllowedInputVariables { get { return new string[] { "sigma", "theta", "theta1" }; } } 16 protected override int TrainingPartitionStart { get { return 0; } }17 protected override int TrainingPartitionEnd { get { return 800; } }18 protected override int TestPartitionStart { get { return 800; } }19 protected override int TestPartitionEnd { get { return 1000; } }20 16 21 17 public int Seed { get; private set; } -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman4.cs
r17638 r17639 14 14 protected override string[] VariableNames { get { return new string[] { "x1", "x2", "y1", "y2", "d"}; } } 15 15 protected override string[] AllowedInputVariables { get { return new string[] {"x1", "x2", "y1", "y2"}; } } 16 protected override int TrainingPartitionStart { get { return 0; } }17 protected override int TrainingPartitionEnd { get { return 80; } }18 protected override int TestPartitionStart { get { return 80; } }19 protected override int TestPartitionEnd { get { return 100; } }20 16 21 17 public int Seed { get; private set; } -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman5.cs
r17638 r17639 14 14 protected override string[] VariableNames { get { return new string[] { "m1", "m2", "G", "x1", "x2", "y1", "y2", "z1", "z2", "F"}; } } 15 15 protected override string[] AllowedInputVariables { get { return new string[] {"m1", "m2", "G", "x1", "x2", "y1", "y2", "z1", "z2"}; } } 16 protected override int TrainingPartitionStart { get { return 0; } } 17 protected override int TrainingPartitionEnd { get { return 800000; } } 18 protected override int TestPartitionStart { get { return 800000; } } 19 protected override int TestPartitionEnd { get { return 1000000; } } 16 20 17 public int Seed { get; private set; } 21 18 -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman7.cs
r17638 r17639 14 14 protected override string[] VariableNames { get { return new string[] { "x1", "x2", "x3", "y1", "y2", "y3", "A"}; } } 15 15 protected override string[] AllowedInputVariables { get { return new string[] {"x1", "x2", "x3", "y1", "y2", "y3"}; } } 16 protected override int TrainingPartitionStart { get { return 0; } } 17 protected override int TrainingPartitionEnd { get { return 80; } } 18 protected override int TestPartitionStart { get { return 80; } } 19 protected override int TestPartitionEnd { get { return 100; } } 16 20 17 public int Seed { get; private set; } 21 18 -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/FeynmanDescriptor.cs
r17638 r17639 14 14 15 15 protected override int TrainingPartitionStart { get { return 0; } } 16 protected override int TrainingPartitionEnd { get { return 10 ; } }17 protected override int TestPartitionStart { get { return 10 ; } }18 protected override int TestPartitionEnd { get { return 20 ; } }16 protected override int TrainingPartitionEnd { get { return 100000; } } 17 protected override int TestPartitionStart { get { return 100000; } } 18 protected override int TestPartitionEnd { get { return 200000; } } 19 19 } 20 20 }
Note: See TracChangeset
for help on using the changeset viewer.