• Stars
    star
    119
  • Rank 288,664 (Top 6 %)
  • Language
    Python
  • License
    MIT License
  • Created about 6 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Seamlessly integrate matplotlib figures as tensorflow summaries.

tf-matplotlib - seamless integration of matplotlib figures into TensorFlow summaries

tf-matplotlib renders your everyday matplotlib figures tinside TensorFlow's Tensorboard visualization interface. The library

  • takes care of evaluating input tensors prior to plotting,
  • avoids matplotlib threading issues,
  • support multiple figures and,
  • provides blitting for runtime critical plotting.

The following TensorFlow summary is generated by sgd.py. It plots the progress of gradient descent optimizers on a test surface. To avoid redrawing the test surface, it makes use of blitting. See usage below for a more introductory example.

Installation

pip install tfmpl

Requirements

  • Python 3.5/3.6
  • TensorFlow 1.x
  • matplotlib 2.2.0

Build status

Branch Linux Windows
master
develop

Usage

Below are the relevant snippets to render a simple scatter plot. See scatter.py for the complete self-contained example.

import tensorflow as tf
import numpy as np

import tfmpl

@tfmpl.figure_tensor
def draw_scatter(scaled, colors): 
    '''Draw scatter plots. One for each color.'''  
    figs = tfmpl.create_figures(len(colors), figsize=(4,4))
    for idx, f in enumerate(figs):
        ax = f.add_subplot(111)
        ax.axis('off')
        ax.scatter(scaled[:, 0], scaled[:, 1], c=colors[idx])
        f.tight_layout()

    return figs

with tf.Session(graph=tf.Graph()) as sess:

    # A point cloud that can be scaled by the user
    points = tf.constant(
        np.random.normal(loc=0.0, scale=1.0, size=(100, 2)).astype(np.float32)
    )
    scale = tf.placeholder(tf.float32)        
    scaled = points*scale

    # Note, `scaled` above is a tensor. Its being passed `draw_scatter` below. 
    # However, when `draw_scatter` is invoked, the tensor will be evaluated and a
    # numpy array representing its content is provided.   
    image_tensor = draw_scatter(scaled, ['r', 'g'])
    image_summary = tf.summary.image('scatter', image_tensor)      
    all_summaries = tf.summary.merge_all() 
    
    writer = tf.summary.FileWriter('log', sess.graph)
    summary = sess.run(all_summaries, feed_dict={scale: 2.})
    writer.add_summary(summary, global_step=0)

Draw utilities

When doing classification, a common task is to generate a confusion matrix. tf-matplotlib provides tfmpl.draw.confusion_matrix to quickly generate such a plot from labels and predictions. The following plot shows classification training progress on the MNIST classification task. Full sample code is provided in mnist.py.

License

MIT License

Copyright (c) 2018 Christoph Heindl

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

More Repositories

1

py-motmetrics

📊 Benchmark multiple object trackers (MOT) in Python
Python
1,331
star
2

pytorch-blender

💦 Seamless, distributed, real-time integration of Blender into PyTorch data pipelines
Python
527
star
3

dest

🐼 One Millisecond Deformable Shape Tracking Library (DEST)
C++
284
star
4

poisson-image-editing

Poisson image editing for seamless cloning and other operations
C++
244
star
5

py-thin-plate-spline

Code for computing interpolating / approximating thin plate splines.
Jupyter Notebook
156
star
6

inpaint

✏️ Inpaint is a C++ library providing image inpainting algorithms
C++
151
star
7

image-align

Variants of the classic Lucas-Kanade image alignment algorithm
C++
139
star
8

py-lapsolver

Fast linear assignment problem (LAP) solvers for Python based on c-extensions
Python
136
star
9

mesh-deform

🍭 Physically plausible interactive 3D mesh deformation based on as rigid as possible constraints.
C++
73
star
10

pytorch-debayer

Convolutional PyTorch debayering / demosaicing layers
Python
56
star
11

autoregressive

🥝 Autoregressive Models in PyTorch.
Python
56
star
12

pydantic-numpy

Seamlessly integrate numpy arrays into pydantic models.
Python
48
star
13

cppopt

Numerical optimization in C++
C++
38
star
14

parsley

Low-cost 3D scanner using Laser Triangulation
C#
35
star
15

sdftoolbox

Vectorized Python methods for creating, manipulating and tessellating signed distance fields.
Python
33
star
16

pure-torch-ngp

A pure PyTorch based implementation of "Instant Neural Graphics Primitives with a Multiresolution Hash Encoding" with tweaks.
Python
29
star
17

py-style-transfer

🎨 Artistic neural style transfer with tweaks in PyTorch
Jupyter Notebook
25
star
18

reconstructme-qt

ReconstructMe Qt UserInterface - Reference Implementation
C++
22
star
19

aam

Active Appearance Models in C++
C++
21
star
20

rgbd-correction

Code and data accompanying our work on spatio-thermal depth correction of RGB-D sensors based on Gaussian Process Regression in real-time.
Python
16
star
21

supershape

Python code to compute 3D parametric supershapes; additional Blender mesh generation support
Python
15
star
22

py-cgraph

🍊 Intro to symbolic computation in Python including applications to function optimization, physics simulation and more. Includes notebooks on back-propagation, auto-diff and more.
Python
14
star
23

py-minexr

Minimal, standalone, fast Python OpenEXR reader for single-part, uncompressed scan-line files as produced by Blender.
Python
12
star
24

rmds

Ruby Multidimensional Scaling Library
Ruby
12
star
25

py-control

PID controller playground in Python
Python
11
star
26

8point

8 Point algorithm for estimating fundamental matrix.
C++
11
star
27

python-hls-stream

Minimal HLS streaming demo with dynamic marker support in Python
Python
10
star
28

torch-spherical-harmonics

Real Spherical Harmonics for PyTorch
Python
10
star
29

py-globalflow

Python implementation of "Global Data Association for MOT Tracking using Network Flows"
Python
9
star
30

tikz-calibration-patterns

Latex, TikZ calibration pattern generation.
TeX
7
star
31

volplay

Manipulating, rendering and interacting with volumetric data
C++
6
star
32

gcsl

Implementation of "Learning to Reach Goals via Iterated Supervised Learning"
Python
5
star
33

pytorch-blender-dr

Jupyter Notebook
5
star
34

sympy-nondim

Non-dimensionalization of physical equations using sympy.
Python
5
star
35

py-probabilistic-robotics

Probabilistic robot localization
Python
4
star
36

gpu-bake

GPU vertex color baking
C++
4
star
37

py-mass-springs

Fast simulation of mass-spring systems
Python
4
star
38

py-microdots

A modern Python library to work with Anoto dot patterns.
Python
4
star
39

BilateralBlueNoisePointcloudSampling

C++
4
star
40

robot-pose

Estimate robot poses from 2d images
4
star
41

magic-texture

Generates psychedelic color textures in the spirit of Blender's magic texture shader using Python/Numpy
Python
4
star
42

py-rest-angularjs

Blueprint code for projects combining flask/aiohttp and AngularJS in a single web application
Python
3
star
43

motion-blend

Temporal blending of projectile motion estimates in 1D
Python
3
star
44

image-babble

ImageBabble is a lightweight C++ library to send and receive images
C++
3
star
45

py-classic-ai

Various classic artificial intelligence algorithms applied to common problems.
Python
3
star
46

py-dimensional-analysis

Dimensional analysis and modeling in Python
Python
3
star
47

bone-solve-ik

Fitting kinematic parameters to best align with set of noisy anchor points in Python.
Python
2
star
48

defocus

Structure from accidential motions for rendering synthetic apparature effects (focus change)
C++
2
star
49

qcv

Automatically exported from code.google.com/p/qcv
C#
2
star
50

jtypes

Bringing ECMAScript 5 types to C++
C++
2
star
51

py-gaussian-process

Gaussian processes samples
Python
2
star
52

monte-carlo-integration

Theory and implementation of Monte Carlo integration techniques
Python
2
star
53

cpp-restify

A framework for exposing RESTful APIs from C++
C++
2
star
54

score-matching

Jupyter Notebook
2
star
55

proximity-fusion

Code for "Enhanced Human-Machine Interaction by Combining Proximity Sensing with Global Perception" IROS 2019
Jupyter Notebook
2
star
56

kdmap

Automatically exported from code.google.com/p/kdmap
C#
1
star
57

py-videotime

Detect and extract time overlays in videos.
Python
1
star
58

pl-git-callback

A PyTorch-Lightning callback to increase model reproducibility through enforcing consistent git repository states upon training and validation.
Python
1
star
59

semi-supervised-em

Code for 'Notes on Semi-Supervised Expectation Maximization'
Jupyter Notebook
1
star
60

py-mcmc

Exemplary implementations of statistical methods for sampling from probability distributions
Jupyter Notebook
1
star
61

py-tonedetect

Capture tone sequences from real-time audio streams in Python
Jupyter Notebook
1
star
62

IoT-Scopes

Turns your Arduino into a software logic analyzer
C++
1
star
63

rpmk

Implementation of the 'Pyramide Match Kernel' in Ruby
Ruby
1
star
64

py-irdebug

Utilities for infrared signal debugging
C++
1
star
65

projective_circles

Experiments involving projective geometry of circles and how that affects computer vision tasks
Jupyter Notebook
1
star