eb0a49591e
Implemented rng::uniform and rng::binomial for single values, vectors and matrices. implemeted dropout layers and tested it. Also fixed the validation code. Before it used y one place, now it uses y_test as it should.
12 lines
110 B
C
12 lines
110 B
C
// "./utils/utils.h"
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "random/engine.h"
|
|
|
|
#include "uniform.h"
|
|
#include "binomial.h"
|
|
|
|
|