-
Notifications
You must be signed in to change notification settings - Fork 53
/
metabucket.py
103 lines (86 loc) · 2.97 KB
/
metabucket.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2016 Timothy Dozat
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import numpy as np
import tensorflow as tf
from configurable import Configurable
from bucket import Bucket
#***************************************************************
class Metabucket(Configurable):
""""""
#=============================================================
def __init__(self, *args, **kwargs):
""""""
name = kwargs.get('name', 'Sents')
self._n_bkts = kwargs.pop('n_bkts', None)
super(Metabucket, self).__init__(*args, **kwargs)
if self._n_bkts is None:
self._n_bkts = super(Metabucket, self).n_bkts
self._buckets = [Bucket(self._config, name='%s-%d' % (name, i)) for i in xrange(self.n_bkts)]
self._sizes = None
self._data = None
self._len2bkt = None
return
#=============================================================
def reset(self, sizes, pad=False):
""""""
if pad:
self._data = [(0,0)]
else:
self._data = []
self._sizes = sizes
self._len2bkt = {}
prev_size = -1
for bkt_idx, size in enumerate(sizes):
self._buckets[bkt_idx].reset(size, pad=pad)
self._len2bkt.update(zip(range(prev_size+1, size+1), [bkt_idx]*(size-prev_size)))
prev_size=size
return
#=============================================================
def add(self, sent):
""""""
if isinstance(self._data, np.ndarray):
raise TypeError("The buckets have already been finalized, you can't add more to them")
bkt_idx = self._len2bkt[len(sent)]
idx = self._buckets[bkt_idx].add(sent)
self._data.append( (bkt_idx, idx) )
return len(self._data)-1
#=============================================================
def _finalize(self):
""""""
for bucket in self:
bucket._finalize()
self._data = np.array(self._data)
return
#=============================================================
@property
def n_bkts(self):
return self._n_bkts
@property
def data(self):
return self._data
@property
def size(self):
return self.data.shape[0]
#=============================================================
def __iter__(self):
return (bucket for bucket in self._buckets)
def __getitem__(self, key):
return self._buckets[key]
def __len__(self):
return len(self._buckets)