-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhinton.m
53 lines (43 loc) · 1.31 KB
/
hinton.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
function h = hinton(w)
%HINTON Plot Hinton diagram for a weight matrix.
%
% Description
%
% HINTON(W) takes a matrix W and plots the Hinton diagram.
%
% H = HINTON(NET) also returns the figure handle H which can be used,
% for instance, to delete the figure when it is no longer needed.
%
% To print the figure correctly in black and white, you should call
% SET(H, 'INVERTHARDCOPY', 'OFF') before printing.
%
% See also
% DEMHINT, HINTMAT, MLPHINT
%
% Copyright (c) Ian T Nabney (1996-2001)
% Set scale to be up to 0.9 of maximum absolute weight value, where scale
% defined so that area of box proportional to weight value.
% Use no more than 640x480 pixels
xmax = 640; ymax = 480;
% Offset bottom left hand corner
x01 = 40; y01 = 40;
x02 = 80; y02 = 80;
% Need to allow 5 pixels border for window frame: but 30 at top
border = 5;
top_border = 30;
ymax = ymax - top_border;
xmax = xmax - border;
% First layer
[xvals, yvals, color] = hintmat(w);
% Try to preserve aspect ratio approximately
if (8*size(w, 1) < 6*size(w, 2))
delx = xmax; dely = xmax*size(w, 1)/(size(w, 2));
else
delx = ymax*size(w, 2)/size(w, 1); dely = ymax;
end
h = figure('Color', [0.5 0.5 0.5], ...
'Colormap', [0 0 0; 1 1 1]);
set(gca, 'Visible', 'off', 'Position', [0 0 1 1]);
hold on;
patch(xvals', yvals', color', 'Edgecolor', 'none');
axis equal;