Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/14/09 15:18:03 (15 years ago)
Author:
mkommend
Message:

added SupportVectorCreator, SupportVectorEvaluator and source files of libsvm
(ticket #619)

Location:
trunk/sources/HeuristicLab.SupportVectorMachines/3.2
Files:
21 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.SupportVectorMachines/3.2/HeuristicLab.SupportVectorMachines-3.2.csproj

    r1793 r1806  
    1313    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
    1414    <FileAlignment>512</FileAlignment>
     15    <SignAssembly>true</SignAssembly>
     16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
    1517  </PropertyGroup>
    1618  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     
    1820    <DebugType>full</DebugType>
    1921    <Optimize>false</Optimize>
    20     <OutputPath>bin\Debug\</OutputPath>
     22    <OutputPath>bin\x64\Debug\</OutputPath>
    2123    <DefineConstants>DEBUG;TRACE</DefineConstants>
    2224    <ErrorReport>prompt</ErrorReport>
    2325    <WarningLevel>4</WarningLevel>
     26    <PlatformTarget>x64</PlatformTarget>
    2427  </PropertyGroup>
    2528  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
     
    3033    <ErrorReport>prompt</ErrorReport>
    3134    <WarningLevel>4</WarningLevel>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x64\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x64</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
     45    <OutputPath>bin\x64\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <Optimize>true</Optimize>
     48    <DebugType>pdbonly</DebugType>
     49    <PlatformTarget>x64</PlatformTarget>
     50    <ErrorReport>prompt</ErrorReport>
    3251  </PropertyGroup>
    3352  <ItemGroup>
     
    4665  </ItemGroup>
    4766  <ItemGroup>
     67    <Compile Include="HeuristicLabSupportVectorMachinesPlugin.cs" />
    4868    <Compile Include="Properties\AssemblyInfo.cs" />
     69    <Compile Include="SupportVectorCreator.cs" />
     70    <Compile Include="SupportVectorEvaluator.cs" />
     71    <Compile Include="SVMHelper.cs" />
     72    <Compile Include="SVM\Cache.cs" />
     73    <Compile Include="SVM\GaussianTransform.cs" />
     74    <Compile Include="SVM\IRangeTransform.cs" />
     75    <Compile Include="SVM\Model.cs" />
     76    <Compile Include="SVM\Node.cs" />
     77    <Compile Include="SVM\Parameter.cs" />
     78    <Compile Include="SVM\ParameterSelection.cs" />
     79    <Compile Include="SVM\PerformanceEvaluator.cs" />
     80    <Compile Include="SVM\PrecomputedKernel.cs" />
     81    <Compile Include="SVM\Prediction.cs" />
     82    <Compile Include="SVM\Problem.cs" />
     83    <Compile Include="SVM\RangeTransform.cs" />
     84    <Compile Include="SVM\Scaling.cs" />
     85    <Compile Include="SVM\Solver.cs" />
     86    <Compile Include="SVM\SupportClass.cs" />
     87    <Compile Include="SVM\Training.cs" />
    4988  </ItemGroup>
    5089  <ItemGroup>
     90    <None Include="HeuristicLab.snk" />
    5191    <None Include="Properties\AssemblyInfo.frame" />
     92  </ItemGroup>
     93  <ItemGroup>
     94    <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj">
     95      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
     96      <Name>HeuristicLab.Core-3.2</Name>
     97    </ProjectReference>
     98    <ProjectReference Include="..\..\HeuristicLab.DataAnalysis\3.2\HeuristicLab.DataAnalysis-3.2.csproj">
     99      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
     100      <Name>HeuristicLab.DataAnalysis-3.2</Name>
     101    </ProjectReference>
     102    <ProjectReference Include="..\..\HeuristicLab.Data\3.2\HeuristicLab.Data-3.2.csproj">
     103      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
     104      <Name>HeuristicLab.Data-3.2</Name>
     105    </ProjectReference>
     106    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
     107      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
     108      <Name>HeuristicLab.PluginInfrastructure</Name>
     109    </ProjectReference>
     110  </ItemGroup>
     111  <ItemGroup>
     112    <Content Include="SVM\license.txt" />
    52113  </ItemGroup>
    53114  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Note: See TracChangeset for help on using the changeset viewer.