All Projects → akimach → Tfgraphviz

akimach / Tfgraphviz

Licence: mit
A visualization tool to show a TensorFlow's graph like TensorBoard

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Tfgraphviz

Pyflow
Visual scripting framework for python - https://wonderworks-software.github.io/PyFlow
Stars: ✭ 710 (+1675%)
Mutual labels:  dataflow-programming
Kroki
Creates diagrams from textual descriptions!
Stars: ✭ 774 (+1835%)
Mutual labels:  graphviz
Plumber
The General-Purpose Cross-Language Dataflow Programming
Stars: ✭ 26 (-35%)
Mutual labels:  dataflow-programming
Graphql Voyager
🛰️ Represent any GraphQL API as an interactive graph
Stars: ✭ 6,481 (+16102.5%)
Mutual labels:  graphviz
Tf cnnvis
CNN visualization tool in TensorFlow
Stars: ✭ 769 (+1822.5%)
Mutual labels:  tensorboard
Protobuf Uml Diagram
Create UML diagrams from Protobuf compiled .proto files using Python
Stars: ✭ 17 (-57.5%)
Mutual labels:  graphviz
Glance
A visual Haskell
Stars: ✭ 620 (+1450%)
Mutual labels:  graphviz
Java9 Jigsaw Depvis
DepVis (Java 9 Jigsaw Dependency Visualizer)
Stars: ✭ 14 (-65%)
Mutual labels:  graphviz
Crayon
A language-agnostic interface to TensorBoard
Stars: ✭ 776 (+1840%)
Mutual labels:  tensorboard
D3 Dot Graph
This module provides D3js compatible library to parse and load files in graphviz DOT (.dot) (graph description language) format.
Stars: ✭ 23 (-42.5%)
Mutual labels:  graphviz
Raftlib
The RaftLib C++ library, streaming/dataflow concurrency via C++ iostream-like operators
Stars: ✭ 717 (+1692.5%)
Mutual labels:  dataflow-programming
Bmw Tensorflow Training Gui
This repository allows you to get started with a gui based training a State-of-the-art Deep Learning model with little to no configuration needed! NoCode training with TensorFlow has never been so easy.
Stars: ✭ 736 (+1740%)
Mutual labels:  tensorboard
Hcn Prototypeloss Pytorch
Hierarchical Co-occurrence Network with Prototype Loss for Few-shot Learning (PyTorch)
Stars: ✭ 17 (-57.5%)
Mutual labels:  tensorboard
Tensorflow cookbook
Code for Tensorflow Machine Learning Cookbook
Stars: ✭ 5,984 (+14860%)
Mutual labels:  tensorboard
Language Dot
Dot (Graphviz) package for Atom
Stars: ✭ 11 (-72.5%)
Mutual labels:  graphviz
Pggan Pytorch
🔥🔥 PyTorch implementation of "Progressive growing of GANs (PGGAN)" 🔥🔥
Stars: ✭ 653 (+1532.5%)
Mutual labels:  tensorboard
Rete
JavaScript framework for visual programming and creating node editor
Stars: ✭ 7,156 (+17790%)
Mutual labels:  dataflow-programming
Pytorch Auto Drive
Segmentation models (ERFNet, ENet, DeepLab, FCN...) and Lane detection models (SCNN, SAD, PRNet, RESA, LSTR...) based on PyTorch 1.6 with mixed precision training
Stars: ✭ 32 (-20%)
Mutual labels:  tensorboard
Tensorboardx
tensorboard for pytorch (and chainer, mxnet, numpy, ...)
Stars: ✭ 7,185 (+17862.5%)
Mutual labels:  tensorboard
D3 Graphviz
Graphviz DOT rendering and animated transitions using D3
Stars: ✭ 901 (+2152.5%)
Mutual labels:  graphviz

tfgraphviz

.. image:: https://img.shields.io/github/license/akimach/tfgraphviz.svg :alt: GitHub license :target: https://github.com/akimach/tfgraphviz/blob/master/LICENSE

.. image:: https://badge.fury.io/py/tfgraphviz.svg :target: https://badge.fury.io/py/tfgraphviz

tfgraphviz is a module to visualize a TensorFlow's data flow graph like TensorBoard using Graphviz. tfgraphviz enables to provide a visualization of tensorflow graph on Jupyter Notebook without TensorBoard.

Links

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

g = tf.Graph()
with g.as_default():
    a = tf.constant(1, name="a")
    b = tf.constant(2, name="b")
    c = tf.add(a, b, name="add")
tfg.board(g)

.. 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>_

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].