Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jqhoogland/randnn

Library for sampling random neural networks.
https://github.com/jqhoogland/randnn

Last synced: 10 days ago
JSON representation

Library for sampling random neural networks.

Awesome Lists containing this project

README

        

# Random neural networks

A library for sampling random neural networks.

### The model
```math
\tau \frac{dh_i}{dt}=-h_i+\sum_{j=1}^N J_{ij}\phi(h_j),
```
where:
- $`h_i(t)`$ is the state of neuron $i$ at time $t$.
- $`J_{ij}`$ is the weight of the connection from neuron $j$ to neuron $i$.
- It is sampled from $\mathcal{N}(0, g^2/N)$, where $g$ is our coupling strength.
- $`J_{ii}=0`$
- $`\phi`$ is the activation function ($`=\tanh`$)