Metadata-Version: 1.1
Name: ann_visualizer
Version: 1.7
Summary: A python library for visualizing Keras Artificial Neural Networks
Home-page: https://github.com/Prodicode/ann-visualizer
Author: Tudor Gheorghiu
Author-email: tudor.posta@live.com
License: MIT
Description: 
            ANN Visualizer is a great visualization python library used to work with Keras. It uses python's graphviz library to create a presentable graph of the neural network you are building.
        
            Usage:
        from ann_visualizer.visualize import ann_viz;
        #Build your model here
        ann_viz(model)
        
        
        
        Documentation:
        
        ann_viz(model, view=True, filename="network.gv")
        
        * model - The Keras Sequential model
        * view - If True, it opens the graph preview after executed
        * filename - Where to save the graph. (.gv file format)
        
Keywords: ann,ai,visualizer,learning,artificial,intelligence
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
