-
Notifications
You must be signed in to change notification settings - Fork 0
/
compression.py
263 lines (223 loc) · 8.08 KB
/
compression.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
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
import array
import numpy as np
class StandardPostings:
"""
Class dengan static methods, untuk mengubah representasi postings list
yang awalnya adalah List of integer, berubah menjadi sequence of bytes.
Kita menggunakan Library array di Python.
ASUMSI: postings_list untuk sebuah term MUAT di memori!
Silakan pelajari:
https://docs.python.org/3/library/array.html
"""
@staticmethod
def encode(postings_list):
"""
Encode postings_list menjadi stream of bytes
Parameters
----------
postings_list: List[int]
List of docIDs (postings)
Returns
-------
bytes
bytearray yang merepresentasikan urutan integer di postings_list
"""
# Untuk yang standard, gunakan L untuk unsigned long, karena docID
# tidak akan negatif. Dan kita asumsikan docID yang paling besar
# cukup ditampung di representasi 4 byte unsigned.
return array.array("L", postings_list).tobytes()
@staticmethod
def decode(encoded_postings_list):
"""
Decodes postings_list dari sebuah stream of bytes
Parameters
----------
encoded_postings_list: bytes
bytearray merepresentasikan encoded postings list sebagai keluaran
dari static method encode di atas.
Returns
-------
List[int]
list of docIDs yang merupakan hasil decoding dari encoded_postings_list
"""
decoded_postings_list = array.array("L")
decoded_postings_list.frombytes(encoded_postings_list)
return decoded_postings_list.tolist()
@staticmethod
def encode_tf(tf_list):
"""
Encode list of term frequencies menjadi stream of bytes
Parameters
----------
tf_list: List[int]
List of term frequencies
Returns
-------
bytes
bytearray yang merepresentasikan nilai raw TF kemunculan term di setiap
dokumen pada list of postings
"""
return StandardPostings.encode(tf_list)
@staticmethod
def decode_tf(encoded_tf_list):
"""
Decodes list of term frequencies dari sebuah stream of bytes
Parameters
----------
encoded_tf_list: bytes
bytearray merepresentasikan encoded term frequencies list sebagai keluaran
dari static method encode_tf di atas.
Returns
-------
List[int]
List of term frequencies yang merupakan hasil decoding dari encoded_tf_list
"""
return StandardPostings.decode(encoded_tf_list)
class VBEPostings:
"""
Berbeda dengan StandardPostings, dimana untuk suatu postings list,
yang disimpan di disk adalah sequence of integers asli dari postings
list tersebut apa adanya.
Pada VBEPostings, kali ini, yang disimpan adalah gap-nya, kecuali
posting yang pertama. Barulah setelah itu di-encode dengan Variable-Byte
Enconding algorithm ke bytestream.
Contoh:
postings list [34, 67, 89, 454] akan diubah dulu menjadi gap-based,
yaitu [34, 33, 22, 365]. Barulah setelah itu di-encode dengan algoritma
compression Variable-Byte Encoding, dan kemudian diubah ke bytesream.
ASUMSI: postings_list untuk sebuah term MUAT di memori!
"""
@staticmethod
def vb_encode_number(number):
"""
Encodes a number using Variable-Byte Encoding
Lihat buku teks kita!
"""
# TODO
# source: ppt index_compression.pdf page 29
bytes = []
while True:
bytes.insert(0, number % 128)
if number < 128:
break
number //= 128
bytes[-1] += 128
return bytes
@staticmethod
def vb_encode(list_of_numbers):
"""
Melakukan encoding (tentunya dengan compression) terhadap
list of numbers, dengan Variable-Byte Encoding
"""
# TODO
# source: ppt index_compression.pdf page 29
bytestream = []
for n in list_of_numbers:
bytestream += VBEPostings.vb_encode_number(n)
return array.array("L", bytestream).tobytes()
@staticmethod
def encode(postings_list):
"""
Encode postings_list menjadi stream of bytes (dengan Variable-Byte
Encoding). JANGAN LUPA diubah dulu ke gap-based list, sebelum
di-encode dan diubah ke bytearray.
Parameters
----------
postings_list: List[int]
List of docIDs (postings)
Returns
-------
bytes
bytearray yang merepresentasikan urutan integer di postings_list
"""
# TODO
return VBEPostings.vb_encode(np.diff([0] + postings_list).tolist())
@staticmethod
def encode_tf(tf_list):
"""
Encode list of term frequencies menjadi stream of bytes
Parameters
----------
tf_list: List[int]
List of term frequencies
Returns
-------
bytes
bytearray yang merepresentasikan nilai raw TF kemunculan term di setiap
dokumen pada list of postings
"""
return VBEPostings.vb_encode(tf_list)
@staticmethod
def vb_decode(encoded_bytestream):
"""
Decoding sebuah bytestream yang sebelumnya di-encode dengan
variable-byte encoding.
"""
numbers = []
n = 0
for byte in encoded_bytestream:
if byte < 128:
n = 128 * n + byte
else:
n = 128 * n + byte - 128
numbers.append(n)
n = 0
return numbers
@staticmethod
def decode(encoded_postings_list):
"""
Decodes postings_list dari sebuah stream of bytes. JANGAN LUPA
bytestream yang di-decode dari encoded_postings_list masih berupa
gap-based list.
Parameters
----------
encoded_postings_list: bytes
bytearray merepresentasikan encoded postings list sebagai keluaran
dari static method encode di atas.
Returns
-------
List[int]
list of docIDs yang merupakan hasil decoding dari encoded_postings_list
"""
# TODO
decoded_postings_list = array.array("L")
decoded_postings_list.frombytes(encoded_postings_list)
decoded_postings_list = VBEPostings.vb_decode(decoded_postings_list)
return np.cumsum(decoded_postings_list).tolist()
@staticmethod
def decode_tf(encoded_tf_list):
"""
Decodes list of term frequencies dari sebuah stream of bytes
Parameters
----------
encoded_tf_list: bytes
bytearray merepresentasikan encoded term frequencies list sebagai keluaran
dari static method encode_tf di atas.
Returns
-------
List[int]
List of term frequencies yang merupakan hasil decoding dari encoded_tf_list
"""
return VBEPostings.vb_decode(encoded_tf_list)
if __name__ == "__main__":
postings_list = [34, 67, 89, 454, 2345738]
tf_list = [12, 10, 3, 4, 1]
for Postings in [StandardPostings, VBEPostings]:
print(Postings.__name__)
encoded_postings_list = Postings.encode(postings_list)
encoded_tf_list = Postings.encode_tf(tf_list)
print("byte hasil encode postings: ", encoded_postings_list)
print("ukuran encoded postings : ", len(encoded_postings_list), "bytes")
print("byte hasil encode TF list : ", encoded_tf_list)
print("ukuran encoded postings : ", len(encoded_tf_list), "bytes")
decoded_posting_list = Postings.decode(encoded_postings_list)
decoded_tf_list = Postings.decode_tf(encoded_tf_list)
print("hasil decoding (postings): ", decoded_posting_list)
print("hasil decoding (TF list) : ", decoded_tf_list)
assert (
decoded_posting_list == postings_list
), "hasil decoding tidak sama dengan postings original"
assert (
decoded_tf_list == tf_list
), "hasil decoding tidak sama dengan postings original"
print()