prcastro / Nervoso.jl

Simple Neural Networks library written in Julia
Other
5 stars 0 forks source link

Nervoso

Documentation Status Travis Coveralls License

This package provides a simple implementation of Feedforward Neural Networks.

The main purpose of this package isn't to provide a fast implementation of the algorithms, but rather a general and extensible one, alongside an easy-to-read code. A simple paper explaining the concepts behind this package can be found here.

Installation

To install this package, simply run:

Pkg.clone("https://github.com/prcastro/Nervoso.jl.git")

Basic usage

To use this package, run:

using Nervoso

To learn how to use the library, check out the documentation.