#ifndef NEURAL_NET_H #define NEURAL_NET_H #include template class NeuralNet { public: NeuralNet(std::vector &layer_sizes); private: ActivationFunction m_activation_func; std::vector m_sizes; std::vector m_weights; std::vector feed_forward(std::vector x); }; #endif