25 lines
575 B
C++
25 lines
575 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "Layer.h"
|
|
|
|
class Net : public std::vector < Layer >
|
|
{
|
|
public:
|
|
Net();
|
|
Net(std::initializer_list<size_t> layerSizes);
|
|
Net(const std::string &filename);
|
|
|
|
void initialize(std::initializer_list<size_t> layerSizes);
|
|
|
|
void feedForward(const std::vector<double> &inputValues);
|
|
void feedForward(const double *inputValues);
|
|
std::vector<double> getOutput();
|
|
void backProp(const std::vector<double> &targetValues);
|
|
|
|
void save(const std::string &filename);
|
|
void load(const std::string &filename);
|
|
};
|