Created
February 1, 2010 20:51
-
-
Save dwf/292018 to your computer and use it in GitHub Desktop.
A function for drawing Hinton diagrams with matplotlib.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Draws Hinton diagrams using matplotlib ( http://matplotlib.sf.net/ ). | |
Hinton diagrams are a handy way of visualizing weight matrices, using | |
colour to denote sign and area to denote magnitude. | |
By David Warde-Farley -- user AT cs dot toronto dot edu (user = dwf) | |
with thanks to Geoffrey Hinton for providing the MATLAB code off of | |
which this is modeled. | |
Redistributable under the terms of the 3-clause BSD license | |
(see http://www.opensource.org/licenses/bsd-license.php for details) | |
""" | |
import numpy as np | |
import matplotlib.pyplot as plt | |
def _blob(x, y, area, colour): | |
""" | |
Draws a square-shaped blob with the given area (< 1) at | |
the given coordinates. | |
""" | |
hs = np.sqrt(area) / 2 | |
xcorners = np.array([x - hs, x + hs, x + hs, x - hs]) | |
ycorners = np.array([y - hs, y - hs, y + hs, y + hs]) | |
plt.fill(xcorners, ycorners, colour, edgecolor=colour) | |
def hinton(W, maxweight=None): | |
""" | |
Draws a Hinton diagram for visualizing a weight matrix. | |
Temporarily disables matplotlib interactive mode if it is on, | |
otherwise this takes forever. | |
""" | |
reenable = False | |
if plt.isinteractive(): | |
plt.ioff() | |
plt.clf() | |
height, width = W.shape | |
if not maxweight: | |
maxweight = 2**np.ceil(np.log(np.max(np.abs(W)))/np.log(2)) | |
plt.fill(np.array([0, width, width, 0]), | |
np.array([0, 0, height, height]), | |
'gray') | |
plt.axis('off') | |
plt.axis('equal') | |
for x in xrange(width): | |
for y in xrange(height): | |
_x = x+1 | |
_y = y+1 | |
w = W[y, x] | |
if w > 0: | |
_blob(_x - 0.5, | |
height - _y + 0.5, | |
min(1, w/maxweight), | |
'white') | |
elif w < 0: | |
_blob(_x - 0.5, | |
height - _y + 0.5, | |
min(1, -w/maxweight), | |
'black') | |
if reenable: | |
plt.ion() | |
if __name__ == "__main__": | |
hinton(np.random.randn(20, 20)) | |
plt.title('Example Hinton diagram - 20x20 random normal') | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great, thank you for making this available! One note though: In/after line 36 you should set
reenable = True
.