https://github.com/kaczmarj/litte_anns
small scale simple artificial neural networks
https://github.com/kaczmarj/litte_anns
Last synced: about 2 months ago
JSON representation
small scale simple artificial neural networks
- Host: GitHub
- URL: https://github.com/kaczmarj/litte_anns
- Owner: kaczmarj
- Created: 2019-01-24T22:03:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-24T22:13:51.000Z (over 6 years ago)
- Last Synced: 2025-02-10T03:22:24.882Z (4 months ago)
- Language: Julia
- Size: 31.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# litte_anns
small scale simple artificial neural networks## using activation functions:
```julia
using Distributions
include("Act.jl")vals = rand(Normal(-1, 1), 1000);
relu_output = Act.positive_linear(vals);# or if you want in place mutation
Act.positive_linear!(vals);# alternatively
include("activations.jl")
relu_output = positive_linear(vals);
# or
positive_linear!(vals);
```## pytorch models
aside from the ground up software, there are networks built for toy problems in pytorch