Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dboyliao/simpleneuralnetwork.jl
https://github.com/dboyliao/simpleneuralnetwork.jl
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dboyliao/simpleneuralnetwork.jl
- Owner: dboyliao
- License: other
- Created: 2015-05-07T11:10:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-18T06:34:00.000Z (over 9 years ago)
- Last Synced: 2024-03-15T01:43:13.508Z (8 months ago)
- Language: Julia
- Size: 574 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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 SimpleNeuralNetworknn = 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.
```