Skip to content

#Weekend_Project: Neural Network Visualizer web application using Streamlit, a simple model server using Keras and Flask.

Notifications You must be signed in to change notification settings

zeroinverse/neural-network-visualizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neural-Network-Visualizer

#Weekend_Project - Neural Network Visualizer web application using Streamlit, a simple model server using Keras and Flask.
A web application that will visualize the outputs of all the nodes of all the layers of the neural network (using Keras' functional API) for a given input image (MNIST dataset)

Neural Network architecture (Keras)

model = tf.keras.models.Sequential([
    tf.keras.layers.Dense(32, activation='sigmoid', input_shape=(784,)),
    tf.keras.layers.Dense(32, activation='sigmoid'),
    tf.keras.layers.Dense(10, activation='softmax')
])

Demo

About

#Weekend_Project: Neural Network Visualizer web application using Streamlit, a simple model server using Keras and Flask.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages