Fix includes.

This commit is contained in:
Ryan Curtin
2022-04-03 14:36:36 -04:00
parent 5253b1427a
commit 4fb0dd4965
8 changed files with 11 additions and 2 deletions
@@ -17,6 +17,7 @@
#define MLPACK_METHODS_ANN_LAYER_ALPHA_DROPOUT_HPP
#include <mlpack/prereqs.hpp>
#include "layer.hpp"
namespace mlpack {
namespace ann /** Artificial Neural Network. */ {
@@ -30,6 +30,7 @@
#include <mlpack/methods/ann/activation_functions/hard_swish_function.hpp>
#include <mlpack/methods/ann/activation_functions/tanh_exponential_function.hpp>
#include <mlpack/methods/ann/activation_functions/silu_function.hpp>
#include "layer.hpp"
namespace mlpack {
namespace ann /** Artificial Neural Network. */ {
@@ -14,6 +14,7 @@
#define MLPACK_METHODS_ANN_LAYER_CONCATENATE_HPP
#include <mlpack/prereqs.hpp>
#include "layer.hpp"
namespace mlpack {
namespace ann /** Artificial Neural Network. */ {
+1 -1
View File
@@ -20,7 +20,7 @@
#include <mlpack/methods/ann/convolution_rules/svd_convolution.hpp>
#include <mlpack/core/util/to_lower.hpp>
#include "layer_types.hpp"
#include "layer.hpp"
#include "padding.hpp"
namespace mlpack {
@@ -15,6 +15,8 @@
#include <mlpack/prereqs.hpp>
#include "layer.hpp"
namespace mlpack {
namespace ann /** Artificial Neural Network. */ {
@@ -13,6 +13,7 @@
#define MLPACK_METHODS_ANN_LAYER_MULTI_LAYER_HPP
#include "../make_alias.hpp"
#include "layer.hpp"
namespace mlpack {
namespace ann {
@@ -16,7 +16,7 @@
#include <mlpack/prereqs.hpp>
#include <mlpack/methods/ann/activation_functions/gaussian_function.hpp>
#include "layer_types.hpp"
#include "layer.hpp"
namespace mlpack {
namespace ann /** Artificial Neural Network. */ {
@@ -12,6 +12,9 @@
#ifndef MLPACK_METHODS_ANN_LAYER_RECURRENT_LAYER_HPP
#define MLPACK_METHODS_ANN_LAYER_RECURRENT_LAYER_HPP
#include <mlpack/prereqs.hpp>
#include "layer.hpp"
namespace mlpack {
namespace ann {