Changeset 1819 for trunk/sources/HeuristicLab.SupportVectorMachines
- Timestamp:
- 05/15/09 10:29:00 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.SupportVectorMachines/3.2
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.SupportVectorMachines/3.2/HeuristicLab.SupportVectorMachines-3.2.csproj
r1816 r1819 72 72 <Compile Include="SupportVectorEvaluator.cs" /> 73 73 <Compile Include="SVMHelper.cs" /> 74 <Compile Include="SVM\Cache.cs" />75 <Compile Include="SVM\GaussianTransform.cs" />76 <Compile Include="SVM\IRangeTransform.cs" />77 <Compile Include="SVM\Model.cs" />78 <Compile Include="SVM\Node.cs" />79 <Compile Include="SVM\Parameter.cs" />80 <Compile Include="SVM\ParameterSelection.cs" />81 <Compile Include="SVM\PerformanceEvaluator.cs" />82 <Compile Include="SVM\PrecomputedKernel.cs" />83 <Compile Include="SVM\Prediction.cs" />84 <Compile Include="SVM\Problem.cs" />85 <Compile Include="SVM\RangeTransform.cs" />86 <Compile Include="SVM\Scaling.cs" />87 <Compile Include="SVM\Solver.cs" />88 <Compile Include="SVM\SupportClass.cs" />89 <Compile Include="SVM\Training.cs" />90 74 </ItemGroup> 91 75 <ItemGroup> … … 110 94 <Name>HeuristicLab.PluginInfrastructure</Name> 111 95 </ProjectReference> 96 <ProjectReference Include="..\..\LibSVM\LibSVM.csproj"> 97 <Project>{A16F23B5-FB62-499E-A831-26953AA56FE2}</Project> 98 <Name>LibSVM</Name> 99 </ProjectReference> 112 100 </ItemGroup> 113 101 <ItemGroup> 114 < Content Include="SVM\license.txt" />102 <Folder Include="SVM\" /> 115 103 </ItemGroup> 116 104 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
trunk/sources/HeuristicLab.SupportVectorMachines/3.2/HeuristicLabSupportVectorMachinesPlugin.cs
r1806 r1819 29 29 [ClassInfo(Name = "HeuristicLab.SupportVectorMachines-3.2")] 30 30 [PluginFile(Filename = "HeuristicLab.SupportVectorMachines-3.2.dll", Filetype = PluginFileType.Assembly)] 31 [PluginFile(Filename = "LibSVM.dll", Filetype = PluginFileType.Assembly)] 31 32 [Dependency(Dependency = "HeuristicLab.Core-3.2")] 32 33 [Dependency(Dependency = "HeuristicLab.Data-3.2")] -
trunk/sources/HeuristicLab.SupportVectorMachines/3.2/SimpleR2Evaluator.cs
r1814 r1819 22 22 double sse = 0; 23 23 double cnt = 0; 24 foreach (ItemList row in values) { 24 foreach (ItemList row in values) { 25 25 double estimated = ((DoubleData)row[0]).Data; 26 26 double target = ((DoubleData)row[1]).Data;
Note: See TracChangeset
for help on using the changeset viewer.