An Artificial Neural Network is a machine learning model. I learned about it on Math Intersect Programming.
neural.rkt
provides a function make-network
.
- Call
make-network
to get an instance ofnetwork%
send
train
on this instance with your training dataevaluate
your test data as needed
Look at binary-example.rkt
and sin-example.rkt
for more info