fixed a typo in mpl.h and an omitted include in Sample.h

This commit is contained in:
rluna
2019-01-12 21:09:46 +01:00
parent 72f2688c7d
commit e7ac6e6951
2 changed files with 2 additions and 1 deletions

View File

@@ -19,7 +19,7 @@
class MLP {
public:
//desired call sintax : MLP({64*64,20,4}, {"sigmoid", "linear"},
//desired call syntax : MLP({64*64,20,4}, {"sigmoid", "linear"},
MLP(const std::vector<uint64_t> & layers_nodes,
const std::vector<std::string> & layers_activfuncs,
bool use_constant_weight_init = false,

View File

@@ -5,6 +5,7 @@
#ifndef TRAININGSAMPLE_H
#define TRAININGSAMPLE_H
#include <iostream>
#include <stdlib.h>
#include <vector>