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
|
/**
* @file ada_sqrt_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("AdaSqrt_LogisticRegressionFunction", "[AdaSqrt]",
ENS_ALL_TEST_TYPES)
{
AdaSqrt optimizer(8.0, 32, 10 * Tolerances<TestType>::Obj, 150000, 1e-9,
true);
// We allow a few trials for lower precision types because AdaSqrt can have
// trouble converging in that case.
LogisticRegressionFunctionTest<TestType>(
optimizer,
Tolerances<TestType>::LRTrainAcc,
Tolerances<TestType>::LRTestAcc,
sizeof(typename TestType::elem_type) < 4 ? 5 : 1);
}
|