Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/15/09 10:29:00 (16 years ago)
Author:
mkommend
Message:

created new project for LibSVM source files (ticket #619)

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  
    7272    <Compile Include="SupportVectorEvaluator.cs" />
    7373    <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" />
    9074  </ItemGroup>
    9175  <ItemGroup>
     
    11094      <Name>HeuristicLab.PluginInfrastructure</Name>
    11195    </ProjectReference>
     96    <ProjectReference Include="..\..\LibSVM\LibSVM.csproj">
     97      <Project>{A16F23B5-FB62-499E-A831-26953AA56FE2}</Project>
     98      <Name>LibSVM</Name>
     99    </ProjectReference>
    112100  </ItemGroup>
    113101  <ItemGroup>
    114     <Content Include="SVM\license.txt" />
     102    <Folder Include="SVM\" />
    115103  </ItemGroup>
    116104  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • trunk/sources/HeuristicLab.SupportVectorMachines/3.2/HeuristicLabSupportVectorMachinesPlugin.cs

    r1806 r1819  
    2929  [ClassInfo(Name = "HeuristicLab.SupportVectorMachines-3.2")]
    3030  [PluginFile(Filename = "HeuristicLab.SupportVectorMachines-3.2.dll", Filetype = PluginFileType.Assembly)]
     31  [PluginFile(Filename = "LibSVM.dll", Filetype = PluginFileType.Assembly)]
    3132  [Dependency(Dependency = "HeuristicLab.Core-3.2")]
    3233  [Dependency(Dependency = "HeuristicLab.Data-3.2")]
  • trunk/sources/HeuristicLab.SupportVectorMachines/3.2/SimpleR2Evaluator.cs

    r1814 r1819  
    2222      double sse = 0;
    2323      double cnt = 0;
    24       foreach (ItemList row in values) {
     24      foreach (ItemList row in values) {                               
    2525        double estimated = ((DoubleData)row[0]).Data;
    2626        double target = ((DoubleData)row[1]).Data;
Note: See TracChangeset for help on using the changeset viewer.