Changeset 2285 for trunk/sources/HeuristicLab.Modeling
- Timestamp:
- 08/13/09 17:28:07 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Modeling/3.2
- Files:
-
- 3 added
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Modeling/3.2/HeuristicLab.Modeling-3.2.csproj
r2226 r2285 82 82 </ItemGroup> 83 83 <ItemGroup> 84 <Compile Include="AnalyzerModel.cs" /> 84 85 <Compile Include="ClassificationProblemInjector.cs" /> 85 86 <Compile Include="DoubleExtensions.cs" /> 87 <Compile Include="IAnalyzerModel.cs" /> 86 88 <Compile Include="VariableImpactCalculatorBase.cs" /> 87 89 <Compile Include="VariableEvaluationImpactCalculator.cs" /> 88 <Compile Include="Model.cs" /> 89 <Compile Include="IModel.cs" /> 90 <Compile Include="IPredictor.cs" /> 90 91 <Compile Include="SimpleEvaluatorBase.cs" /> 91 92 <Compile Include="ITimeSeriesAlgorithm.cs" /> -
trunk/sources/HeuristicLab.Modeling/3.2/IAlgorithm.cs
r1922 r2285 34 34 int TargetVariable { get; set; } 35 35 IEngine Engine { get; } 36 I Model Model { get; }36 IAnalyzerModel Model { get; } 37 37 } 38 38 } -
trunk/sources/HeuristicLab.Modeling/3.2/ProblemInjectorView.cs
r1856 r2285 96 96 dataset.Rows = parser.Rows; 97 97 dataset.Columns = parser.Columns; 98 for (int i = 0; i < parser.VariableNames.Length; i++) {99 dataset.SetVariableName(i, parser.VariableNames[i]);100 }101 98 dataset.Name = parser.ProblemName; 102 99 dataset.Samples = new double[dataset.Rows * dataset.Columns]; … … 110 107 TrySetVariable("TestSamplesEnd", parser.TestSamplesEnd); 111 108 TrySetVariable("TargetVariable", parser.TargetVariable); 109 110 for (int i = 0; i < parser.VariableNames.Length; i++) { 111 dataset.SetVariableName(i, parser.VariableNames[i]); 112 } 112 113 113 114 IVariable var = ProblemInjector.GetVariable("AllowedFeatures");
Note: See TracChangeset
for help on using the changeset viewer.