PiSimo / DeepChart

Generate images of neural network achitectures.

Home Page:https://pisimo.github.io/DeepChart/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DeepChart (Beta)

Visualize Neural network achitectures. https://pisimo.github.io/DeepChart/

Paste your keras (soon tflearn too) code and generate a visual rappresenation of your neural model.

Example:

Neural network code(keras):
 net = Sequential()
 net.add(Dense(12,kernel_initializer=w_init,input_dim=12,activation='linear'))
 net.add(Reshape((1,12)))
 net.add(GRU(40,kernel_initializer=w_init,activation=act,return_sequences=True))
 net.add(Dropout(0.4))
 net.add(GRU(70,kernel_initializer=w_init,activation=act,return_sequences=True))
 net.add(Dropout(0.3))
 net.add(GRU(70,kernel_initializer=w_init,activation=act,return_sequences=True))
 net.add(Dropout(0.4))
 net.add(GRU(40,kernel_initializer=w_init,activation=act,return_sequences=False))
 net.add(Dropout(0.4))
 net.add(Dense(1,kernel_initializer=w_init,activation='linear'))

Generated image:

About

Generate images of neural network achitectures.

https://pisimo.github.io/DeepChart/

License:MIT License


Languages

Language:JavaScript 55.1%Language:HTML 28.8%Language:CSS 16.1%