Update include path

This commit is contained in:
sosokker 2023-08-26 02:09:08 +07:00
parent 318d8945ec
commit 874ba254ba
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
#include <functional> #include <functional>
#include <Eigen/Dense> #include "../../include/Eigen/Dense"
#include <Layers/Layers.hpp> #include "../Layers/Layers.hpp"
class Activation : public Layer { class Activation : public Layer {
public: public:

View File

@ -1,7 +1,7 @@
#include <cmath> #include <cmath>
#include <Layers/Layers.hpp> #include "../Layers/Layers.hpp"
#include "Activation.hpp" #include "Activation.hpp"
#include <Eigen/Dense> #include "../../include/Eigen/Dense"
class TanhActivation : public Activation { class TanhActivation : public Activation {
public: public: