Neuro/Net.h

15 lines
305 B
C
Raw Normal View History

2015-03-23 18:28:29 +00:00
#pragma once
#include <vector>
#include "Layer.h"
2015-03-23 18:28:29 +00:00
class Net : public std::vector < Layer >
{
public:
2015-10-15 20:37:13 +00:00
Net(std::initializer_list<size_t> layerSizes);
2015-03-23 18:28:29 +00:00
void feedForward(const std::vector<double> &inputValues);
std::vector<double> getOutput();
void backProp(const std::vector<double> &targetValues);
2015-03-23 18:28:29 +00:00
};