Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/11/12 15:53:05 (12 years ago)
Author:
swinkler
Message:

#1970: Added first implementation of variables impact analysis (replacement with mean).

Location:
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/SymbolicDataAnalysisSingleObjectiveValidationAnalyzer.cs

    r7721 r8793  
    8282      Parameters.Add(new LookupParameter<T>(EvaluatorParameterName, "The operator to use for fitness evaluation on the validation partition."));
    8383      Parameters.Add(new LookupParameter<ISymbolicDataAnalysisExpressionTreeInterpreter>(SymbolicDataAnalysisTreeInterpreterParameterName, "The interpreter for symbolic data analysis expression trees."));
    84       Parameters.Add(new ValueLookupParameter<IntRange>(ValidationPartitionParameterName, "Thes validation partition."));
     84      Parameters.Add(new ValueLookupParameter<IntRange>(ValidationPartitionParameterName, "The validation partition."));
    8585      Parameters.Add(new ValueLookupParameter<PercentValue>(RelativeNumberOfEvaluatedSamplesParameterName, "The relative number of samples of the dataset partition, which should be randomly chosen for evaluation between the start and end index."));
    8686      Parameters.Add(new ValueLookupParameter<PercentValue>(PercentageOfBestSolutionsParameterName,
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj

    r8600 r8793  
    127127    <Compile Include="Analyzers\SymbolicDataAnalysisVariableFrequencyAnalyzer.cs" />
    128128    <Compile Include="Analyzers\SymbolicDataAnalysisAlleleFrequencyAnalyzer.cs" />
     129    <Compile Include="Analyzers\SymbolicDataAnalysisVariablesImpactAnalyzer.cs" />
    129130    <Compile Include="Creators\MultiSymbolicDataAnalysisExpressionCreator.cs" />
    130131    <Compile Include="Creators\SymbolicDataAnalysisExpressionFullTreeCreator.cs" />
     
    334335  -->
    335336  <PropertyGroup>
    336    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     337    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    337338set ProjectDir=$(ProjectDir)
    338339set SolutionDir=$(SolutionDir)
     
    341342call PreBuildEvent.cmd
    342343</PreBuildEvent>
    343 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     344    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
    344345export ProjectDir=$(ProjectDir)
    345346export SolutionDir=$(SolutionDir)
Note: See TracChangeset for help on using the changeset viewer.