2015-07-11 16:23:35 +03:00
|
|
|
from libcpp.vector cimport vector
|
|
|
|
from libc.stdint cimport uint32_t
|
|
|
|
from libc.stdint cimport int64_t
|
2015-07-12 18:58:27 +03:00
|
|
|
from libc.stdint cimport int32_t
|
2015-07-11 16:23:35 +03:00
|
|
|
from libc.stdint cimport uint64_t
|
|
|
|
|
2015-07-12 18:58:27 +03:00
|
|
|
from preshed.maps cimport PreshMap
|
|
|
|
from murmurhash.mrmr cimport hash64
|
|
|
|
|
2015-07-11 16:23:35 +03:00
|
|
|
import numpy
|
|
|
|
|
2015-07-12 02:31:37 +03:00
|
|
|
cimport cython
|
|
|
|
|
2015-07-11 16:23:35 +03:00
|
|
|
|
2015-07-12 06:06:36 +03:00
|
|
|
#cdef class Serializer:
|
|
|
|
# def __init__(self, Vocab vocab):
|
|
|
|
# pass
|
|
|
|
#
|
|
|
|
# def dump(self, Doc tokens, file_):
|
|
|
|
# pass
|
|
|
|
# # Format
|
|
|
|
# # - Total number of bytes in message (32 bit int)
|
|
|
|
# # - Words, terminating in an EOL symbol, huffman coded ~12 bits per word
|
|
|
|
# # - Spaces ~1 bit per word
|
|
|
|
# # - Parse: Huffman coded head offset / dep label / POS tag / entity IOB tag
|
|
|
|
# # combo. ? bits per word. 40 * 80 * 40 * 12 = 1.5m symbol vocab
|
|
|
|
|
|
|
|
|
2015-07-11 16:23:35 +03:00
|
|
|
cdef struct Node:
|
|
|
|
float prob
|
2015-07-12 18:58:27 +03:00
|
|
|
int32_t left
|
|
|
|
int32_t right
|
|
|
|
|
|
|
|
|
|
|
|
cdef struct Code:
|
|
|
|
uint64_t bits
|
|
|
|
char length
|
2015-07-11 16:23:35 +03:00
|
|
|
|
|
|
|
|
2015-07-12 18:58:27 +03:00
|
|
|
# Note that we're setting the most significant bits here first, when in practice
|
|
|
|
# we're actually wanting the last bit to be most significant (for Huffman coding,
|
|
|
|
# anyway).
|
|
|
|
cdef Code bit_append(Code code, bint bit) nogil:
|
|
|
|
cdef uint64_t one = 1
|
|
|
|
if bit:
|
|
|
|
code.bits |= one << code.length
|
|
|
|
else:
|
|
|
|
code.bits &= ~(one << code.length)
|
|
|
|
code.length += 1
|
|
|
|
return code
|
|
|
|
|
|
|
|
|
2015-07-12 06:06:36 +03:00
|
|
|
cdef class HuffmanCodec:
|
|
|
|
cdef vector[Node] nodes
|
2015-07-12 18:58:27 +03:00
|
|
|
cdef vector[Code] codes
|
2015-07-12 06:06:36 +03:00
|
|
|
cdef float[:] probs
|
2015-07-12 18:58:27 +03:00
|
|
|
cdef PreshMap table
|
2015-07-12 06:06:36 +03:00
|
|
|
def __init__(self, symbols, probs):
|
2015-07-12 18:58:27 +03:00
|
|
|
self.table = PreshMap()
|
|
|
|
cdef bytes symb_str
|
|
|
|
cdef uint64_t key
|
2015-07-12 20:58:05 +03:00
|
|
|
cdef uint32_t i
|
2015-07-12 06:06:36 +03:00
|
|
|
for i, symbol in enumerate(symbols):
|
2015-07-12 18:58:27 +03:00
|
|
|
if type(symbol) == unicode or type(symbol) == bytes:
|
|
|
|
symb_str = symbol.encode('utf8')
|
|
|
|
key = hash64(<unsigned char*>symb_str, len(symb_str), 0)
|
|
|
|
else:
|
|
|
|
key = int(symbol)
|
2015-07-12 20:58:05 +03:00
|
|
|
self.table[key] = i+1
|
|
|
|
self.symbols = symbols
|
2015-07-12 06:06:36 +03:00
|
|
|
self.probs = probs
|
|
|
|
self.codes.resize(len(probs))
|
2015-07-12 18:58:27 +03:00
|
|
|
for i in range(len(self.codes)):
|
|
|
|
self.codes[i].bits = 0
|
|
|
|
self.codes[i].length = 0
|
2015-07-12 06:06:36 +03:00
|
|
|
populate_nodes(self.nodes, probs)
|
2015-07-12 18:58:27 +03:00
|
|
|
cdef Code path
|
|
|
|
path.bits = 0
|
|
|
|
path.length = 0
|
2015-07-12 06:27:47 +03:00
|
|
|
assign_codes(self.nodes, self.codes, len(self.nodes) - 1, path)
|
2015-07-12 06:06:36 +03:00
|
|
|
|
2015-07-12 20:58:05 +03:00
|
|
|
def encode(self, sequence):
|
2015-07-12 18:58:27 +03:00
|
|
|
cdef vector[bint] bits
|
2015-07-12 20:58:05 +03:00
|
|
|
cdef uint64_t key
|
|
|
|
cdef uint64_t i
|
2015-07-12 06:06:36 +03:00
|
|
|
for symbol in sequence:
|
2015-07-12 20:58:05 +03:00
|
|
|
if type(symbol) == unicode or type(symbol) == bytes:
|
|
|
|
symb_str = symbol.encode('utf8')
|
|
|
|
key = hash64(<unsigned char*>symb_str, len(symb_str), 0)
|
|
|
|
else:
|
|
|
|
key = int(symbol)
|
|
|
|
i = <uint32_t>self.table.get(key)
|
2015-07-12 17:03:43 +03:00
|
|
|
if i == 0:
|
|
|
|
raise Exception("Unseen symbol: %s" % symbol)
|
|
|
|
else:
|
|
|
|
code = self.codes[i]
|
2015-07-12 06:06:36 +03:00
|
|
|
bits.extend(code)
|
|
|
|
return bits
|
|
|
|
|
2015-07-12 20:58:05 +03:00
|
|
|
def decode(self, unsigned char[:] data):
|
2015-07-12 06:06:36 +03:00
|
|
|
symbols = []
|
|
|
|
node = self.nodes.back()
|
2015-07-12 20:58:05 +03:00
|
|
|
bits = []
|
|
|
|
cdef unsigned char byte
|
|
|
|
cdef unsigned char one
|
|
|
|
cdef int i = 0
|
|
|
|
for byte_ in data:
|
|
|
|
for i in range(7, -1, -1):
|
|
|
|
bits.append(bool(byte & (one << i)))
|
|
|
|
|
|
|
|
cdef bint bit = 0
|
|
|
|
|
2015-07-12 06:06:36 +03:00
|
|
|
for bit in bits:
|
|
|
|
branch = node.right if bit else node.left
|
|
|
|
if branch >= 0:
|
|
|
|
node = self.nodes.at(branch)
|
|
|
|
else:
|
2015-07-12 20:58:05 +03:00
|
|
|
symbol = self.symbols[-(branch + 1)]
|
|
|
|
if symbol == self.eol_symbol:
|
|
|
|
break
|
|
|
|
symbols.append(symbol)
|
2015-07-12 06:06:36 +03:00
|
|
|
node = self.nodes.back()
|
|
|
|
return symbols
|
|
|
|
|
|
|
|
property strings:
|
2015-07-12 06:27:47 +03:00
|
|
|
@cython.boundscheck(False)
|
|
|
|
@cython.wraparound(False)
|
|
|
|
@cython.nonecheck(False)
|
2015-07-12 06:06:36 +03:00
|
|
|
def __get__(self):
|
|
|
|
output = []
|
2015-07-12 06:27:47 +03:00
|
|
|
cdef int i, j
|
2015-07-12 18:58:27 +03:00
|
|
|
cdef bytes string
|
|
|
|
cdef Code code
|
2015-07-12 06:27:47 +03:00
|
|
|
for i in range(self.codes.size()):
|
2015-07-12 18:58:27 +03:00
|
|
|
code = self.codes[i]
|
|
|
|
string = b'{0:b}'.format(code.bits).rjust(code.length, '0')
|
|
|
|
string = string[::-1]
|
|
|
|
output.append(string)
|
2015-07-12 06:06:36 +03:00
|
|
|
return output
|
|
|
|
|
|
|
|
|
2015-07-12 02:31:37 +03:00
|
|
|
@cython.boundscheck(False)
|
|
|
|
@cython.wraparound(False)
|
|
|
|
@cython.nonecheck(False)
|
2015-07-12 06:06:36 +03:00
|
|
|
cdef int populate_nodes(vector[Node]& nodes, float[:] probs) except -1:
|
2015-07-11 16:23:35 +03:00
|
|
|
assert len(probs) >= 3
|
|
|
|
cdef int size = len(probs)
|
|
|
|
cdef int i = size - 1
|
|
|
|
cdef int j = 0
|
|
|
|
|
2015-07-12 02:31:37 +03:00
|
|
|
while i >= 0 or (j+1) < nodes.size():
|
2015-07-11 16:23:35 +03:00
|
|
|
if i < 0:
|
2015-07-12 06:06:36 +03:00
|
|
|
_cover_two_nodes(nodes, j)
|
2015-07-11 16:23:35 +03:00
|
|
|
j += 2
|
2015-07-12 02:31:37 +03:00
|
|
|
elif j >= nodes.size():
|
2015-07-12 06:06:36 +03:00
|
|
|
_cover_two_words(nodes, i, i-1, probs[i] + probs[i-1])
|
2015-07-11 21:01:10 +03:00
|
|
|
i -= 2
|
2015-07-12 02:31:37 +03:00
|
|
|
elif i >= 1 and (j == nodes.size() or probs[i-1] < nodes[j].prob):
|
2015-07-12 06:06:36 +03:00
|
|
|
_cover_two_words(nodes, i, i-1, probs[i] + probs[i-1])
|
2015-07-11 16:23:35 +03:00
|
|
|
i -= 2
|
2015-07-12 02:31:37 +03:00
|
|
|
elif (j+1) < nodes.size() and nodes[j+1].prob < probs[i]:
|
2015-07-12 06:06:36 +03:00
|
|
|
_cover_two_nodes(nodes, j)
|
2015-07-11 16:23:35 +03:00
|
|
|
j += 2
|
|
|
|
else:
|
2015-07-12 06:06:36 +03:00
|
|
|
_cover_one_word_one_node(nodes, j, i, probs[i])
|
2015-07-11 16:23:35 +03:00
|
|
|
i -= 1
|
|
|
|
j += 1
|
2015-07-12 06:06:36 +03:00
|
|
|
return 0
|
2015-07-11 11:57:30 +03:00
|
|
|
|
2015-07-12 06:06:36 +03:00
|
|
|
cdef int _cover_two_nodes(vector[Node]& nodes, int j) nogil:
|
2015-07-11 16:23:35 +03:00
|
|
|
cdef Node node
|
|
|
|
node.left = j
|
|
|
|
node.right = j+1
|
|
|
|
node.prob = nodes[j].prob + nodes[j+1].prob
|
|
|
|
nodes.push_back(node)
|
2015-07-11 11:57:30 +03:00
|
|
|
|
|
|
|
|
2015-07-12 06:06:36 +03:00
|
|
|
cdef int _cover_one_word_one_node(vector[Node]& nodes, int j, int id_, float prob) nogil:
|
2015-07-11 16:23:35 +03:00
|
|
|
cdef Node node
|
2015-07-11 11:57:30 +03:00
|
|
|
# Encode leaves as negative integers, where the integer is the index of the
|
|
|
|
# word in the vocabulary.
|
2015-07-12 02:31:37 +03:00
|
|
|
cdef int64_t leaf_id = - <int64_t>(id_ + 1)
|
|
|
|
cdef float new_prob = prob + nodes[j].prob
|
2015-07-11 11:57:30 +03:00
|
|
|
if prob < nodes[j].prob:
|
2015-07-12 02:31:37 +03:00
|
|
|
node.left = leaf_id
|
|
|
|
node.right = j
|
|
|
|
node.prob = new_prob
|
2015-07-11 11:57:30 +03:00
|
|
|
else:
|
2015-07-12 02:31:37 +03:00
|
|
|
node.left = j
|
|
|
|
node.right = leaf_id
|
|
|
|
node.prob = new_prob
|
2015-07-11 23:27:43 +03:00
|
|
|
nodes.push_back(node)
|
2015-07-11 11:57:30 +03:00
|
|
|
|
|
|
|
|
2015-07-12 06:06:36 +03:00
|
|
|
cdef int _cover_two_words(vector[Node]& nodes, int id1, int id2, float prob) nogil:
|
2015-07-12 02:31:37 +03:00
|
|
|
cdef Node node
|
|
|
|
node.left = -(id1+1)
|
|
|
|
node.right = -(id2+1)
|
|
|
|
node.prob = prob
|
2015-07-11 16:23:35 +03:00
|
|
|
nodes.push_back(node)
|
2015-07-12 06:06:36 +03:00
|
|
|
|
|
|
|
|
2015-07-12 18:58:27 +03:00
|
|
|
cdef int assign_codes(vector[Node]& nodes, vector[Code]& codes, int i, Code path) except -1:
|
|
|
|
cdef Code left_path = bit_append(path, 0)
|
|
|
|
cdef Code right_path = bit_append(path, 1)
|
|
|
|
|
2015-07-12 06:06:36 +03:00
|
|
|
# Assign down left branch
|
|
|
|
if nodes[i].left >= 0:
|
|
|
|
assign_codes(nodes, codes, nodes[i].left, left_path)
|
|
|
|
else:
|
|
|
|
# Leaf on left
|
|
|
|
id_ = -(nodes[i].left + 1)
|
2015-07-12 06:27:47 +03:00
|
|
|
codes[id_] = left_path
|
2015-07-12 06:06:36 +03:00
|
|
|
# Assign down right branch
|
|
|
|
if nodes[i].right >= 0:
|
|
|
|
assign_codes(nodes, codes, nodes[i].right, right_path)
|
|
|
|
else:
|
|
|
|
# Leaf on right
|
|
|
|
id_ = -(nodes[i].right + 1)
|
2015-07-12 06:27:47 +03:00
|
|
|
codes[id_] = right_path
|