mirror of
https://github.com/davidalbertonogueira/MLP.git
synced 2025-12-16 20:07:07 +03:00
fixed a typo in mpl.h and an omitted include in Sample.h
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
#ifndef TRAININGSAMPLE_H
|
||||
#define TRAININGSAMPLE_H
|
||||
|
||||
#include <iostream>
|
||||
#include <stdlib.h>
|
||||
#include <vector>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user