Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1806


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
Files:
21 added
3 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" />
  • trunk/sources/HeuristicLab.sln

    r1795 r1806  
    199199Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Selection.Uncertainty", "HeuristicLab.Selection.Uncertainty\3.2\HeuristicLab.Selection.Uncertainty.csproj", "{4FB4120E-CE65-473F-B2F0-FC2E82FF3761}"
    200200EndProject
     201Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.SupportVectorMachines-3.2", "HeuristicLab.SupportVectorMachines\3.2\HeuristicLab.SupportVectorMachines-3.2.csproj", "{7E18E25A-BCEB-467A-BACC-ABCA73F9D655}"
     202EndProject
    201203Global
    202204  GlobalSection(TestCaseManagementSettings) = postSolution
    203     CategoryFile = HeuristicLab.vsmdi
     205    CategoryFile = HeuristicLab1.vsmdi
    204206  EndGlobalSection
    205207  GlobalSection(SolutionConfigurationPlatforms) = preSolution
     
    34603462    {4FB4120E-CE65-473F-B2F0-FC2E82FF3761}.Visualization Debug|x86.ActiveCfg = Debug|x86
    34613463    {4FB4120E-CE65-473F-B2F0-FC2E82FF3761}.Visualization Debug|x86.Build.0 = Debug|x86
     3464    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.CEDMA Debug|Any CPU.ActiveCfg = Debug|Any CPU
     3465    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.CEDMA Debug|Any CPU.Build.0 = Debug|Any CPU
     3466    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.CEDMA Debug|x64.ActiveCfg = Debug|Any CPU
     3467    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.CEDMA Debug|x86.ActiveCfg = Debug|Any CPU
     3468    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     3469    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Debug|Any CPU.Build.0 = Debug|Any CPU
     3470    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Debug|x64.ActiveCfg = Debug|x64
     3471    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Debug|x64.Build.0 = Debug|x64
     3472    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Debug|x86.ActiveCfg = Debug|Any CPU
     3473    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.GP Debug|Any CPU.ActiveCfg = Debug|Any CPU
     3474    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.GP Debug|Any CPU.Build.0 = Debug|Any CPU
     3475    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.GP Debug|x64.ActiveCfg = Debug|Any CPU
     3476    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.GP Debug|x86.ActiveCfg = Debug|Any CPU
     3477    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Release|Any CPU.ActiveCfg = Release|Any CPU
     3478    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Release|Any CPU.Build.0 = Release|Any CPU
     3479    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Release|x64.ActiveCfg = Release|Any CPU
     3480    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Release|x86.ActiveCfg = Release|Any CPU
     3481    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.v3.2 Debug|Any CPU.ActiveCfg = Debug|Any CPU
     3482    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.v3.2 Debug|Any CPU.Build.0 = Debug|Any CPU
     3483    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.v3.2 Debug|x64.ActiveCfg = Debug|Any CPU
     3484    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.v3.2 Debug|x86.ActiveCfg = Debug|Any CPU
     3485    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Visualization Debug|Any CPU.ActiveCfg = Debug|Any CPU
     3486    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Visualization Debug|Any CPU.Build.0 = Debug|Any CPU
     3487    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Visualization Debug|x64.ActiveCfg = Debug|Any CPU
     3488    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Visualization Debug|x86.ActiveCfg = Debug|Any CPU
    34623489  EndGlobalSection
    34633490  GlobalSection(SolutionProperties) = preSolution
     
    35283555    {E3288D4B-7A51-499A-AC5B-019319CE51DC} = {410732DB-725A-4824-896B-C298978343C0}
    35293556    {4FB4120E-CE65-473F-B2F0-FC2E82FF3761} = {410732DB-725A-4824-896B-C298978343C0}
     3557    {7E18E25A-BCEB-467A-BACC-ABCA73F9D655} = {410732DB-725A-4824-896B-C298978343C0}
    35303558    {C27DDF6C-84DF-45EF-B82F-57A28DD51166} = {78982D7C-D63D-4A3D-AE1F-F58AC007603B}
    35313559    {B3D6D8D9-2B1F-47EC-9C73-77FAECF87310} = {78982D7C-D63D-4A3D-AE1F-F58AC007603B}
  • trunk/sources/HeuristicLab/CopyAssemblies.cmd

    r1740 r1806  
    9393copy "%SolutionDir%\HeuristicLab.SQLite\3.2\SQLite.NET.chm" .\plugins
    9494copy "%SolutionDir%\HeuristicLab.StatisticalAnalysis\3.2\%Outdir%\HeuristicLab.StatisticalAnalysis-3.2.dll" .\plugins
     95copy "%SolutionDir%\HeuristicLab.SupportVectorMachines\3.2\%Outdir%\HeuristicLab.SupportVectorMachines-3.2.dll" .\plugins
    9596copy "%SolutionDir%\HeuristicLab.TestFunctions\3.2\%Outdir%\HeuristicLab.TestFunctions-3.2.dll" .\plugins
    9697copy "%SolutionDir%\HeuristicLab.ThreadParallelEngine\3.2\%Outdir%\HeuristicLab.ThreadParallelEngine-3.2.dll" .\plugins
Note: See TracChangeset for help on using the changeset viewer.