1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/**
* @file ada_bound_test.cpp
* @author Marcus Edel
*
* ensmallen is free software; you may redistribute it and/or modify it under
* the terms of the 3-clause BSD license. You should have received a copy of
* the 3-clause BSD license along with ensmallen. If not, see
* http://www.opensource.org/licenses/BSD-3-Clause for more information.
*/
#if defined(ENS_USE_COOT)
#include <armadillo>
#include <bandicoot>
#endif
#include <ensmallen.hpp>
#include "catch.hpp"
#include "test_function_tools.hpp"
#include "test_types.hpp"
using namespace ens;
using namespace ens::test;
TEMPLATE_TEST_CASE("AdaBound_SphereFunction", "[AdaBound]", ENS_ALL_TEST_TYPES,
ENS_SPARSE_TEST_TYPES)
{
AdaBound optimizer(0.002, 2, 0.1, 1e-3, 0.9, 0.999, 1e-8, 500000,
1e-3, false);
FunctionTest<SphereFunction, TestType>(
optimizer,
10 * Tolerances<TestType>::LargeObj,
10 * Tolerances<TestType>::LargeCoord);
}
TEMPLATE_TEST_CASE("AMSBound_SphereFunction", "[AdaBound]", ENS_ALL_TEST_TYPES,
ENS_SPARSE_TEST_TYPES)
{
AMSBound optimizer(0.002, 2, 0.1, 1e-3, 0.9, 0.999, 1e-8, 500000,
1e-3, false);
FunctionTest<SphereFunction, TestType>(
optimizer,
10 * Tolerances<TestType>::LargeObj,
10 * Tolerances<TestType>::LargeCoord);
}
TEMPLATE_TEST_CASE("AdaBound_SphereFunctionSpMatDenseGradient", "[AdaBound]",
ENS_SPARSE_TEST_TYPES)
{
typedef typename TestType::elem_type ElemType;
SphereFunction f(2);
AdaBound optimizer(0.002, 2, 0.1, 1e-3, 0.9, 0.999, 1e-8, 500000,
1e-3, false);
TestType coordinates = arma::conv_to<TestType>::from(
f.GetInitialPoint());
optimizer.Optimize<decltype(f), TestType, arma::Mat<ElemType> >(
f, coordinates);
REQUIRE(coordinates(0) == Approx(0.0).margin(0.1));
REQUIRE(coordinates(1) == Approx(0.0).margin(0.1));
}
TEMPLATE_TEST_CASE("AMSBound_SphereFunctionSpMatDenseGradient", "[AdaBound]",
ENS_SPARSE_TEST_TYPES)
{
typedef typename TestType::elem_type ElemType;
SphereFunction f(2);
AMSBound optimizer(0.002, 2, 0.1, 1e-3, 0.9, 0.999, 1e-8, 500000,
1e-3, false);
arma::sp_mat coordinates = f.GetInitialPoint<TestType>();
optimizer.Optimize<decltype(f), TestType, arma::Mat<ElemType> >(
f, coordinates);
REQUIRE(coordinates(0) == Approx(0.0).margin(0.1));
REQUIRE(coordinates(1) == Approx(0.0).margin(0.1));
}
|