Metadata-Version: 1.1
Name: tfgraphviz
Version: 0.0.6
Summary: A visualization tool to show a graph like TensorFlow and TensorBoard
Home-page: https://github.com/akimach/tfgraphviz
Author: akimacho
Author-email: kimura.akimasa@gmail.com
License: MIT
Description: 
        tfgraphviz
        ================
        
        .. image:: http://img.shields.io/badge/license-MIT-blue.svg?style=flat
        
        .. image:: https://img.shields.io/badge/python-2.7%2C3.3%2C3.4%2C3.5-blue.svg
        
        .. image:: https://badge.fury.io/py/tfgraphviz.svg
            :target: https://badge.fury.io/py/tfgraphviz
        
        tfgraphviz is a module to create a TensorBoard-ish graph in the DOT language of the Graphviz. tfgraphviz provides a visualization of tensorflow graph on Jupyter Notebook without TensorBoard.
        
        Links
        -----
        
        - GitHub: http://github.com/akimach/tfgraphviz
        - PyPI: https://pypi.python.org/pypi/tfgraphviz
        - Jupyter Notebook: https://nbviewer.jupyter.org/github/akimach/tfgraphviz/blob/master/examples/jupyter_sample.ipynb
        
        Installation
        ------------
        
        Use pip to install:
        
        .. code-block:: bash
        
            $ pip install graphviz
            $ pip install tfgraphviz
        
        The only dependency is  Graphviz.
        
        macOS:
        
        .. code-block:: bash
        
            $ brew install graphviz
        
        Ubuntu:
        
        .. code-block:: bash
        
            $ apt-get install graphviz
        
        Quickstart
        ----------
        
        .. code-block:: python
        
            import tensorflow as tf
            import tfgraphviz as tfg
            a = tf.constant(1, name="a")
            b = tf.constant(2, name="b")
            c = tf.add(a, b, name="add")
            g = tfg.board(tf.get_default_graph())
            g.view()
        
        .. image:: https://raw.githubusercontent.com/akimach/tfgraphviz/master/img/graph.jpg
            :align: center
        
        License
        -------
        
        This package is distributed under the `MIT license <https://raw.githubusercontent.com/akimach/tfgraphviz/master/LICENSE>`_.
        
        Author
        -------
        
        `Akimasa KIMURA <https://github.com/akimach>`_
        
Keywords: tensorflow tensor machine-learning graphviz ml deep-learning neural-network
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: Topic :: Scientific/Engineering :: Mathematics
