mlpack
|
#include <mlpack/core.hpp>
#include <mlpack/methods/ann/dists/bernoulli_distribution.hpp>
#include <mlpack/methods/ann/dists/normal_distribution.hpp>
#include <mlpack/methods/ann/init_rules/random_init.hpp>
#include "catch.hpp"
#include "test_catch_tools.hpp"
#include <mlpack/methods/ann/activation_functions/logistic_function.hpp>
Functions | |
TEST_CASE ("SimpleBernoulliDistributionTest", "[ANNDistTest]") | |
Simple bernoulli distribution module test. | |
TEST_CASE ("JacobianBernoulliDistributionTest", "[ANNDistTest]") | |
Jacobian bernoulli distribution module test when we don't apply logistic. | |
TEST_CASE ("JacobianBernoulliDistributionLogisticTest", "[ANNDistTest]") | |
Jacobian bernoulli distribution module test when we apply logistic. | |
TEST_CASE ("NormalDistributionTest", "[ANNDistTest]") | |
Normal Distribution module test. | |
TEST_CASE ("JacobianNormalDistributionMeanTest", "[ANNDistTest]") | |
Jacobian Normal Distribution module test for mean. | |
TEST_CASE ("JacobianNormalDistributionStandardDeviationTest", "[ANNDistTest]") | |
Jacobian Normal Distribution module test for standard deviation. | |
Tests the ann distributions.
mlpack 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 mlpack. If not, see http://www.opensource.org/licenses/BSD-3-Clause for more information.