Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/02/09 13:17:14 (16 years ago)
Author:
gkronber
Message:
  • Removed "AutoRegressive" parameter for GP completely. User is responsible to set allowed features correctly (including the target variable for auto regression)
  • Setting allowed features correctly in the CEDMA dispatcher (this fixes the problem of incorrect input variables in SVM)

#683 (nu-SVR engine doesn't filter allowed features to remove the target variable)

Location:
trunk/sources/HeuristicLab.GP.StructureIdentification.TimeSeries/3.3
Files:
6 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.GP.StructureIdentification.TimeSeries/3.3/HeuristicLab.GP.StructureIdentification.TimeSeries-3.3.csproj

    r1908 r2130  
    8585    <Compile Include="HeuristicLabGPTimeSeriesPlugin.cs" />
    8686    <Compile Include="OffspringSelectionGP.cs" />
    87     <Compile Include="OffspringSelectionGpEditor.cs">
    88       <SubType>UserControl</SubType>
    89     </Compile>
    90     <Compile Include="OffspringSelectionGpEditor.Designer.cs">
    91       <DependentUpon>OffspringSelectionGpEditor.cs</DependentUpon>
    92     </Compile>
    9387    <Compile Include="ProfitEvaluator.cs" />
    9488    <Compile Include="Properties\AssemblyInfo.cs" />
    9589    <Compile Include="StandardGP.cs" />
    96     <Compile Include="StandardGpEditor.cs">
    97       <SubType>UserControl</SubType>
    98     </Compile>
    99     <Compile Include="StandardGpEditor.Designer.cs">
    100       <DependentUpon>StandardGpEditor.cs</DependentUpon>
    101     </Compile>
    10290    <Compile Include="TheilInequalityCoefficientEvaluator.cs" />
    10391  </ItemGroup>
     
    148136    <None Include="Properties\AssemblyInfo.frame" />
    149137  </ItemGroup>
    150   <ItemGroup>
    151     <EmbeddedResource Include="OffspringSelectionGpEditor.resx">
    152       <DependentUpon>OffspringSelectionGpEditor.cs</DependentUpon>
    153     </EmbeddedResource>
    154     <EmbeddedResource Include="StandardGpEditor.resx">
    155       <DependentUpon>StandardGpEditor.cs</DependentUpon>
    156     </EmbeddedResource>
    157   </ItemGroup>
    158138  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    159139  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  • trunk/sources/HeuristicLab.GP.StructureIdentification.TimeSeries/3.3/OffspringSelectionGP.cs

    r1857 r2130  
    3535namespace HeuristicLab.GP.StructureIdentification.TimeSeries {
    3636  public class OffspringSelectionGP : HeuristicLab.GP.StructureIdentification.OffspringSelectionGP, ITimeSeriesAlgorithm {
    37     public virtual bool Autoregressive {
    38       get { return ProblemInjector.GetVariable("Autoregressive").GetValue<BoolData>().Data; }
    39       set { ProblemInjector.GetVariable("Autoregressive").GetValue<BoolData>().Data = value; }
    40     }
    41 
    4237    protected override IOperator CreateFunctionLibraryInjector() {
    4338      return new FunctionLibraryInjector();
  • trunk/sources/HeuristicLab.GP.StructureIdentification.TimeSeries/3.3/StandardGP.cs

    r1857 r2130  
    3535namespace HeuristicLab.GP.StructureIdentification.TimeSeries {
    3636  public class StandardGP : HeuristicLab.GP.StructureIdentification.StandardGP, ITimeSeriesAlgorithm {
    37     public bool Autoregressive {
    38       get { return ProblemInjector.GetVariable("Autoregressive").GetValue<BoolData>().Data; }
    39       set { ProblemInjector.GetVariable("Autoregressive").GetValue<BoolData>().Data = value; }
    40     }
    41 
    4237    protected override IOperator CreateFunctionLibraryInjector() {
    4338      return new FunctionLibraryInjector();
Note: See TracChangeset for help on using the changeset viewer.