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

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

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