Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dboyliao/simpleneuralnetwork.jl


https://github.com/dboyliao/simpleneuralnetwork.jl

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

# SimpleNeuralNetwork

[![Build Status](https://travis-ci.org/dboyliao/SimpleNeuralNetwork.jl.svg?branch=master)](https://travis-ci.org/dboyliao/SimpleNeuralNetwork.jl)

This is a julia package for building simple Neural Network.

# Basic Usage

```{julia}
using SimpleNeuralNetwork

nn = NeuralNetwork([2, 3, 5, 1], act_fun = tanh) # This will give you a 2x3x5x1 neural network.

train!(nn, X, Y) # Train the neural network

predict(nn, X) # Make prediction based on X.
```