arbdigital / visualise-neural-network

Generates a static diagram of a neural network, where each neuron is connected to every neuron in the previous layer.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Visualise Neural Network

Generates a static diagram of a neural network, where each neuron is connected to every neuron in the previous layer.

For example, this code:

network = NeuralNetwork()
network.add_layer(3)
network.add_layer(4)
network.add_layer(1)
network.draw()

Will generate this diagram:

Diagram of a neural network with 3 neurons in the first layer, 4 neurons in the second layer and 1 neuron in the 3rd layer

About

Generates a static diagram of a neural network, where each neuron is connected to every neuron in the previous layer.

License:MIT License


Languages

Language:Python 100.0%