Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/25/14 00:35:59 (10 years ago)
Author:
gkronber
Message:

worked on a GP model for time series using toeplitz structure

Location:
branches/HeuristicLab.Problems.GaussianProcessTuning
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Algorithms.DataAnalysis.Experimental/HeuristicLab.Algorithms.DataAnalysis.Experimental.csproj

    r10756 r10792  
    3030    <DefineConstants>TRACE</DefineConstants>
    3131    <ErrorReport>prompt</ErrorReport>
    32     <WarningLevel>4</WarningLevel>
     32    <WarningLevel>1</WarningLevel>
    3333    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    3434  </PropertyGroup>
     
    3838  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
    3939    <DebugSymbols>true</DebugSymbols>
    40     <OutputPath>bin\x86\Debug\</OutputPath>
     40    <OutputPath>..\..\..\trunk\sources\bin\</OutputPath>
    4141    <DefineConstants>DEBUG;TRACE</DefineConstants>
    4242    <DebugType>full</DebugType>
     
    4444    <ErrorReport>prompt</ErrorReport>
    4545    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
     46    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     47    <Optimize>false</Optimize>
    4648  </PropertyGroup>
    4749  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
     
    5355    <ErrorReport>prompt</ErrorReport>
    5456    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
     57    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    5558  </PropertyGroup>
    5659  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
     
    130133  </ItemGroup>
    131134  <ItemGroup>
     135    <Compile Include="ToeplitzGaussianProcessModel.cs" />
     136    <Compile Include="ToeplitzGaussianProcessRegressionModelCreator.cs" />
    132137    <Compile Include="EigenGaussianProcessModel.cs">
    133138      <SubType>Code</SubType>
     
    152157    </ProjectReference>
    153158  </ItemGroup>
     159  <ItemGroup>
     160    <Content Include="toeplitz.dll">
     161      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
     162    </Content>
     163  </ItemGroup>
    154164  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    155165  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  • branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.GaussianProcessTuning.Tests/GaussianProcessTuning.Tests.csproj

    r9562 r10792  
    101101      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>
    102102    </Reference>
     103    <Reference Include="HeuristicLab.Problems.Instances-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=x86">
     104      <SpecificVersion>False</SpecificVersion>
     105      <HintPath>bin\x86\Release\HeuristicLab.Problems.Instances-3.3.dll</HintPath>
     106    </Reference>
    103107    <Reference Include="HeuristicLab.Random-3.3">
    104108      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
  • branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.GaussianProcessTuning.Tests/UnitTest.cs

    r9562 r10792  
    3535        double negLogLikelihood;
    3636        HeuristicLab.Algorithms.DataAnalysis.IGaussianProcessSolution solution;
    37         interpreter.EvaluateGaussianProcessConfiguration(t, problemData, out negLogLikelihood, out solution);
     37        interpreter.EvaluateGaussianProcessConfiguration(t, problemData, 50, out negLogLikelihood, out solution);
    3838        Console.WriteLine();
    3939      }
Note: See TracChangeset for help on using the changeset viewer.