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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
|
#!/usr/bin/env python3
# ====================================================================
# Copyright (c) 2007-2009 Carnegie Mellon University. All rights
# reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
#
# This work was supported in part by funding from the Defense Advanced
# Research Projects Agency and the National Science Foundation of the
# United States of America, and the CMU Sphinx Speech Consortium.
#
# THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND
# ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY
# NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# ====================================================================
"""
Functions for bottom-up clustering of mixture weights in a
semi-continuous acoustic model (or, really, any set of multinomials,
if you want).
"""
__author__ = "David Huggins-Daines <dhdaines@gmail.com>"
import numpy
import sys
from cmusphinx import s3mixw, s3senmgau
from cmusphinx.divergence import multi_js
def leaves(tree):
subtree, centroid = tree
if isinstance(subtree, int):
return (subtree,)
else:
return leaves(subtree[0]) + leaves(subtree[1])
def nodes(tree):
active_nodes = [tree]
while len(active_nodes):
new_active_nodes = []
for i, l in enumerate(active_nodes):
subtree, centroid = l
if isinstance(subtree, int):
# Terminal node
yield ((subtree,), centroid, -1, -1)
else:
# Non-terminals: calculate offsets to left and right
# branches (which are added to the new active list
# below)
left = len(active_nodes) - i + len(new_active_nodes)
right = left + 1
yield (leaves(l), # FIXME: slow!
centroid, left, right)
for branch in subtree:
subtree2, centroid2 = branch
new_active_nodes.append((subtree2, centroid2))
active_nodes = new_active_nodes
def prunetree(tree, nleaves):
# Traverse the tree breadth-first until the desired number of
# leaves is obtained, keeping track of centroids
leafnodes = [tree]
while len(leafnodes) < nleaves:
newleafnodes = []
for leaf in leafnodes:
subtree, centroid = leaf
if isinstance(subtree, int):
# Terminal node - nothing to do
newleafnodes.append(leaf)
else:
# Expand non-terminals
for branch in subtree:
subtree2, centroid2 = branch
newleafnodes.append((subtree2, centroid2))
print("Number of leafnodes", len(newleafnodes))
leafnodes = newleafnodes
# Now flatten out the leafnodes to their component distributions
for i, leaf in enumerate(leafnodes):
subtree, centroid = leaf
senones = list(leaves(leaf))
# Sort senones for each leafnode
senones.sort()
leafnodes[i] = (senones, centroid)
# Sort leafnodes by senone ID
leafnodes.sort(key=lambda x: x[0][0])
return leafnodes
def apply_cluster(tree, mixw):
"""
Apply tree topology from one set of mixture weights to another,
producing a tree with the same topology but adjusted centroids.
"""
# Need to do this recursively:
#
# Centroid for tree = (left + right) / 2
# Subtree for tree = (left + right)
subtree, centroid = tree
if isinstance(subtree, int):
# Terminal node, just fetch the mixw distribution
return (subtree, mixw[subtree])
else:
left, right = subtree
lsub, lcentroid = apply_cluster(left, mixw)
rsub, rcentroid = apply_cluster(right, mixw)
return (((lsub, lcentroid), (rsub, rcentroid)),
(lcentroid + rcentroid) / 2.)
def make_bitmap(leafnodes, nbits=None):
if nbits is None:
nbits = max(leafnodes) + 1
nwords = (nbits + 31) // 32
bits = numpy.zeros(nwords, 'int32')
for leaf in leafnodes:
w = leaf // 32
b = leaf % 32
bits[w] |= (1 << b)
# Now strip out all the zeros
start = min(leafnodes) // 32
end = (max(leafnodes) + 1 + 31) // 32
return start, end-start, bits[start:end]
def quantize_mixw(mixw, logbase=1.0001, floor=1e-8):
mixw = mixw.clip(floor, 1.0)
logmixw = -(numpy.log(mixw) / numpy.log(logbase) / (1 << 10))
return logmixw.clip(0, 160).astype('uint8')
def unmake_bitmap(bits, startword, nwords):
startbit = startword * 32
leafnodes = []
for i in range(0, len(bits)):
for j in range(0, 32):
if bits[i] & (1 << j):
leafnodes.append(startbit + i * 32 + j)
return tuple(leafnodes)
def writetree_merged(outfile, tree, mixw):
n_mixw, n_feat, n_density = mixw.shape
outfile.write(b"s3\nversion 0.1\nn_mixw %d\nn_feat %d\nn_density %d\nlogbase 1.0001\n"
% mixw.shape)
pos = outfile.tell() + len(b"endhdr\n")
# Align to 4 byte boundary with spaces
align = 4 - (pos & 3)
outfile.write(b" " * align)
outfile.write(b"endhdr\n")
# Write byte order marker
byteorder = numpy.array((0x11223344,), 'int32')
byteorder.tofile(outfile)
# Now write out a merged tree to the file
# Traverse the tree breadth-first writing out nodes
for leafnodes, centroid, left, right in nodes(tree):
# Write out subtree pointers
subtree = numpy.array((left, right), 'int16')
subtree.tofile(outfile)
# Create a compressed bitmap of the leafnodes
startword, nwords, bits = make_bitmap(leafnodes, n_mixw)
bitpos = numpy.array((startword, nwords), 'int16')
bitpos.tofile(outfile)
bits.tofile(outfile)
# Quantize the mixture weight distributions
for feat in centroid:
mixw = quantize_mixw(feat, 1.0001)
mixw.tofile(outfile)
# Write a "sentinel" node to mark the end of the tree
subtree = numpy.array((-1, -1), 'int16')
bitpos = numpy.array((0, 0), 'int16')
subtree.tofile(outfile)
bitpos.tofile(outfile)
def cluster_merged(mixw, dfunc=multi_js):
# Start with each distribution in its own cluster
# Each of these is a 4x256 array (or nfeat x ngau)
centroids = [mixw[i, :] for i in range(0, mixw.shape[0])]
# Use an auxiliary array to keep track of the senone IDs
trees = list(range(0, len(centroids)))
# Keep merging until we only have one cluster
while len(centroids) > 1:
i = 0
# For each cluster find the closest other cluster, and merge them
while i < len(centroids):
p = centroids[i]
# Evaluate distances for all feature streams
dist = numpy.empty((len(centroids), len(p)))
for j in range(0, len(p)):
qs = numpy.array([x[j] for x in centroids])
dist[:, j] = dfunc(p[j], (p[j] + qs) * 0.5)
dist = dist.mean(1)
# Find the lowest mean distance
nbest = dist.argsort()
for best in nbest:
if dist[best] > 0:
break
q = centroids[best]
# Merge these two
newcentroid = (p + q) * 0.5
print("Merging", i, best, dist[best], len(centroids))
newtree = ((trees[i], p), (trees[best], q))
centroids[i] = newcentroid
trees[i] = newtree
# Remove the other one
del centroids[best]
del trees[best]
i = i + 1
return trees[0], centroids[0]
def readtree_merged(infile):
while True:
spam = infile.readline().strip()
if spam.endswith(b'endhdr'):
break
if spam == b's3':
continue
key, val = spam.split()
if key == b'n_mixw':
n_mixw = int(val)
elif key == b'n_feat':
n_feat = int(val)
elif key == b'n_density':
n_density = int(val)
elif key == b'logbase':
logbase = float(val)
byteorder = numpy.fromfile(infile, 'int32', 1)
nodes = []
# Read in all the nodes
while True:
subtree = numpy.fromfile(infile, 'int16', 2)
if len(subtree) == 0:
return None
bitpos = numpy.fromfile(infile, 'int16', 2)
if bitpos[1] == 0:
break;
bits = numpy.fromfile(infile, 'int32', bitpos[1])
mixw = numpy.fromfile(infile, 'uint8',
n_feat * n_density).reshape(n_feat, n_density)
mixw = (logbase ** -(mixw.astype('i') << 10))
# Replace subtree with senone ID for leafnodes
if subtree[0] == -1:
leafnodes = unmake_bitmap(bits, *bitpos)
subtree = leafnodes[0]
nodes.append([subtree, mixw])
# Now snap all the links to produce a tree
for i, n in enumerate(nodes):
subtree, mixw = n
if isinstance(subtree, int):
# Do nothing
pass
else:
left, right = subtree
n[0] = (nodes[i + left], nodes[i + right])
return nodes[0]
def norm_floor_mixw(mixw, floor=1e-7):
return (mixw.T / mixw.T.sum(0)).T.clip(floor, 1.0)
def write_senmgau(outfile, tree, mixw, nclust):
"""
Create and write a senone to codebook mapping based on a senone
tree, with a maximum of nclust clusters (splitting the largest
cluster first at each level).
"""
clusters = []
clusters.append(tree)
while len(clusters) < nclust:
clusters.sort(key=lambda x: len(leaves(x)), reverse=True)
big = clusters[0]
del clusters[0:1]
clusters.extend((big[0][0], big[0][1]))
print("cluster sizes:", [len(leaves(x)) for x in clusters])
mixwmap = numpy.zeros(len(mixw), 'int32')
for i, c in enumerate(clusters):
for mixwid in leaves(c):
mixwmap[mixwid] = i
print("writing %d senone mappings" % len(mixwmap))
s3senmgau.open(outfile, "wb").write_mapping(mixwmap)
if __name__ == '__main__':
mixw, outfile = sys.argv[1:]
mixw = norm_floor_mixw(s3mixw.open(mixw).getall())
# Build merged mixture weight tree
tree = cluster_merged(mixw)
with open(outfile, "wb") as outfh:
writetree_merged(outfh, tree, mixw)
|