Changeset 2324 for trunk/sources/HeuristicLab.Modeling
- Timestamp:
- 09/02/09 10:39:35 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Modeling/3.2
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Modeling/3.2/HeuristicLab.Modeling-3.2.csproj
r2319 r2324 84 84 <Compile Include="AnalyzerModel.cs" /> 85 85 <Compile Include="ClassificationProblemInjector.cs" /> 86 <Compile Include="DoubleExtensions.cs" />87 86 <Compile Include="IAnalyzerModel.cs" /> 88 87 <Compile Include="MatrixCreator.cs" /> … … 112 111 </ItemGroup> 113 112 <ItemGroup> 113 <ProjectReference Include="..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj"> 114 <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project> 115 <Name>HeuristicLab.Common-3.2</Name> 116 </ProjectReference> 114 117 <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj"> 115 118 <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project> -
trunk/sources/HeuristicLab.Modeling/3.2/HeuristicLabModelingPlugin.cs
r2223 r2324 28 28 [ClassInfo(Name = "HeuristicLab.Modeling-3.2")] 29 29 [PluginFile(Filename = "HeuristicLab.Modeling-3.2.dll", Filetype = PluginFileType.Assembly)] 30 [Dependency(Dependency = "HeuristicLab.Common-3.2")] 30 31 [Dependency(Dependency = "HeuristicLab.Core-3.2")] 31 32 [Dependency(Dependency = "HeuristicLab.Data-3.2")] -
trunk/sources/HeuristicLab.Modeling/3.2/SimpleMeanAbsolutePercentageOfRangeErrorEvaluator.cs
r2226 r2324 25 25 using System.Text; 26 26 using HeuristicLab.Core; 27 using HeuristicLab.Common; 27 28 using HeuristicLab.Data; 28 29 using HeuristicLab.DataAnalysis; -
trunk/sources/HeuristicLab.Modeling/3.2/SimpleVarianceAccountedForEvaluator.cs
r2226 r2324 25 25 using System.Text; 26 26 using HeuristicLab.Core; 27 using HeuristicLab.Common; 27 28 using HeuristicLab.Data; 28 29 using HeuristicLab.DataAnalysis; -
trunk/sources/HeuristicLab.Modeling/3.2/VariableEvaluationImpactCalculator.cs
r2319 r2324 25 25 using System.Xml; 26 26 using HeuristicLab.Core; 27 using HeuristicLab.Common; 27 28 using HeuristicLab.Data; 28 29 using HeuristicLab.DataAnalysis; … … 38 39 AddVariableInfo(new VariableInfo("TargetVariable", "TargetVariable", typeof(IntData), VariableKind.In)); 39 40 AddVariableInfo(new VariableInfo("InputVariableNames", "Names of used variables in the model (optional)", typeof(ItemList<StringData>), VariableKind.In)); 40 AddVariableInfo(new VariableInfo("SamplesStart", " SamplesStart", typeof(IntData), VariableKind.In));41 AddVariableInfo(new VariableInfo("SamplesEnd", " SamplesEnd", typeof(IntData), VariableKind.In));41 AddVariableInfo(new VariableInfo("SamplesStart", "TrainingSamplesStart", typeof(IntData), VariableKind.In)); 42 AddVariableInfo(new VariableInfo("SamplesEnd", "TrainingSamplesEnd", typeof(IntData), VariableKind.In)); 42 43 AddVariableInfo(new VariableInfo("VariableEvaluationImpacts", "VariableEvaluationImpacts", typeof(ItemList), VariableKind.New)); 43 44 } … … 76 77 77 78 } 78 79 79 public static Dictionary<string, double> Calculate(Dataset dataset, IPredictor predictor, string targetVariableName, int start, int end) { 80 80 return Calculate(dataset, predictor, targetVariableName, null, start, end); 81 81 } 82 83 82 84 83 public static Dictionary<string, double> Calculate(Dataset dataset, IPredictor predictor, string targetVariableName, IEnumerable<string> inputVariableNames, int start, int end) {
Note: See TracChangeset
for help on using the changeset viewer.