forked from zhujian198/unispim
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathbigram.c
425 lines (339 loc) · 19.2 KB
/
bigram.c
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
/** 处理bigram函数组
*/
#include <icw.h>
#include <zi.h>
#include <ci.h>
#include <config.h>
#include <wordlib.h>
#include <assert.h>
#include <utility.h>
#include <malloc.h>
#include <math.h>
#include <string.h>
#include <gram.h>
static int GetCiIndex(GRAM_DATA *bigram, const char *ci)
{
int ci_len;
int start = 0;
int end = bigram->header.index0_count - 1;
int mid, pos, ret;
GRAM_INDEX *index0 = GetGramIndex(bigram);
char *word_list = GetGramWordList(bigram);
ci_len = (int)strlen(ci);
if (ci_len > MAX_SEG_WORD_LENGTH || ci_len < 2) //长度错误
return 0;
//二分法查找
while(start <= end)
{
mid = (start + end) / 2;
pos = index0[mid].word_pos;
ret = strcmp(ci, &word_list[pos]);
if (!ret)
return mid;
if (ret < 0)
end = mid - 1;
else
start = mid + 1;
}
return -1; //没有找到
}
/** 获得bigram计数
*/
int GetBigramCount(GRAM_DATA *bigram_data, const char *ci1, const char *ci2)
{
GRAM_INDEX *index0;
GRAM_ITEM *item;
int ci1_index, ci2_index;
int start, end, mid, ret, count;
int start_sav, end_sav;
//寻找词索引
if ((ci1_index = GetCiIndex(bigram_data, ci1)) < 0)
return 0;
if ((ci2_index = GetCiIndex(bigram_data, ci2)) < 0)
return 0;
index0 = GetGramIndex(bigram_data);
item = GetGramItem(bigram_data);
if (index0[ci1_index].item_index < 0)
return 0;
//在item区域进行搜索
start = index0[ci1_index].item_index;
if (ci1_index == bigram_data->header.index0_count - 1) //最后一个
end = bigram_data->header.item_count - 1;
else
end = index0[ci1_index + 1].item_index - 1;
end_sav = end, start_sav = start;
//再次使用二分法进行查找
while (start <= end)
{
mid = (start + end) / 2;
ret = item[mid].word_index - ci2_index;
if (!ret)
break;
if (ret > 0)
end = mid - 1;
else
start = mid + 1;
}
if (start > end)
return 0;
if (mid > start_sav && item[mid - 1].word_index == ci2_index)
count = (item[mid].count << ONE_COUNT_BIT) | item[mid - 1].count;
else if (mid < end_sav && item[mid + 1].word_index == ci2_index)
count = (item[mid + 1].count << ONE_COUNT_BIT) | item[mid].count;
else
count = item[mid].count;
return count;
}
/** 获得回退的概率估计
*/
double newGetBackOffProbability(GRAM_DATA *bigram_data, int index1, int index2)
{
GRAM_INDEX *index0;
GRAM_ITEM *item;
char *word_list;
int freq1, freq2;
int in_freq1;
double value;
double factor = 1.0;
double back_off_weight = 1.0 - 1.0 * bigram_data->header.total_bigram_in_count / bigram_data->header.total_bigram_count;
back_off_weight *= 2.0;
word_list = GetGramWordList(bigram_data);
index0 = GetGramIndex(bigram_data);
item = GetGramItem(bigram_data);
freq1 = index0[index1].word_freq;
in_freq1 = index0[index1].start_count;
freq2 = index0[index2].word_freq;
//在△之前如果需要回退并且是词频较高,说明不好作为语句的结尾。
if (freq1 >= 4000)
{
if (freq2 > SJX_FREQ) //△
factor = 0.3;
}
value = 1.0 * freq2 / bigram_data->header.total_word_freq;// * (1.0 - 1.0 * in_freq1 / freq1);
if (freq1 < SJX_FREQ && freq2 < SJX_FREQ && !word_list[index0[index2].word_pos + 2])
value *= XM;
return value * factor * back_off_weight;
}
/** 获得回退的概率估计
*/
double GetBackOffProbability(GRAM_DATA *bigram_data, int index1, int index2)
{
GRAM_INDEX *index0;
GRAM_ITEM *item;
char *word_list;
int freq1, freq2;
int in_freq1;
double value;
double factor = 1.0;
// double back_off_weight = 0.65;
double back_off_weight = 0.70;
word_list = GetGramWordList(bigram_data);
index0 = GetGramIndex(bigram_data);
item = GetGramItem(bigram_data);
freq1 = index0[index1].word_freq;
in_freq1 = index0[index1].start_count;
freq2 = index0[index2].word_freq;
//在△之前如果需要回退并且是词频较高,说明不好作为语句的结尾。
if (freq1 >= 4000)
{
if (freq2 > SJX_FREQ) //△
factor = 0.08;
}
value = 1.0 * freq2 / bigram_data->header.total_word_freq * (1.0 - 1.0 * in_freq1 / freq1);
factor *= pow(freq1, 1.0 / 32.0);
if (freq1 < SJX_FREQ && freq2 < SJX_FREQ && !word_list[index0[index2].word_pos + 2])
// value *= XM * 0.6;
value *= XM * 0.5;
return value * factor * back_off_weight;
}
/** 获得bigram概率
*/
double GetBigramValue(GRAM_DATA *bigram_data, const char *ci1, const char *ci2)
{
char *word_list;
GRAM_INDEX *index0;
GRAM_ITEM *item;
double value;
int ci1_index, ci2_index;
int ci1_freq, ci2_freq;
int start, end, mid, ret, count;
int start_sav, end_sav;
if (!bigram_data || !ci1 || !ci2) //合法性检查
return 1 / MAX_BCOUNT;
index0 = GetGramIndex(bigram_data);
item = GetGramItem(bigram_data);
word_list = GetGramWordList(bigram_data);
//寻找词索引
ci1_index = GetCiIndex(bigram_data, ci1);
ci2_index = GetCiIndex(bigram_data, ci2);
ci1_freq = ci2_freq = 0;
if (ci1_index >= 0)
ci1_freq = index0[ci1_index].word_freq;
if (ci2_index >= 0)
ci2_freq = index0[ci2_index].word_freq;
if (ci1_index < 0 && ci2_index < 0)
return 1.0 / MAX_BCOUNT;
if (ci1_index < 0) //第一个词没有找到
{
//直接返回ci2的估值
value = 1.0 * ci2_freq / bigram_data->header.total_word_freq;
if (!ci2[2] && *(short*)ci1 != *(short*)"△")
value *= XM;
return value;
}
if (ci2_index < 0) //进行回退
{
//进行回退,跟下面代码中使用GetBackOffProbability进行回退的公式很相似,但
//由于这里ci2不在wordlist中,所以不存在词频,因此将其词频设为1进行计算
value = 1.0 / bigram_data->header.total_word_freq * (ci1_freq - index0[ci1_index].start_count) / ci1_freq;
if (!ci2[2] && *(short*)ci1 != *(short*)"△")
value *= XM;
return value;
}
//判断词频是否很低
if (index0[ci2_index].word_freq < 500)
return GetBackOffProbability(bigram_data, ci1_index, ci2_index);
//在item区域进行搜索
start = index0[ci1_index].item_index;
if (ci1_index == bigram_data->header.index0_count - 1) //最后一个
end = bigram_data->header.item_count - 1;
else
end = index0[ci1_index + 1].item_index - 1;
end_sav = end, start_sav = start;
//再次使用二分法进行查找
while (start <= end)
{
mid = (start + end) / 2;
ret = item[mid].word_index - ci2_index;
if (!ret)
break;
if (ret > 0)
end = mid - 1;
else
start = mid + 1;
}
//此时没有找到,则需要根据词频进行回退。
if (start > end)
return GetBackOffProbability(bigram_data, ci1_index, ci2_index);
//找到
if (mid > start_sav && item[mid - 1].word_index == ci2_index)
count = (item[mid].count << ONE_COUNT_BIT) | item[mid - 1].count;
else if (mid < end_sav && item[mid + 1].word_index == ci2_index)
count = (item[mid + 1].count << ONE_COUNT_BIT) | item[mid].count;
else
count = item[mid].count;
value = 1.0 * count / ci1_freq;
if (!ci1[2] && !ci2[2] && *(short*)ci1 != *(short*)"△" && *(short*)ci2 != *(short*)"△") //两个都是单字,将频率大幅降低
value *= XM;
return value;
}
/** 获得bigram概率
*/
double newGetBigramValue(GRAM_DATA *bigram_data, const char *ci1, const char *ci2)
{
GRAM_INDEX *index0;
GRAM_ITEM *item;
double value;
int ci1_index, ci2_index;
int ci1_freq, ci2_freq;
int start, end, mid, ret, count;
int start_sav, end_sav;
double back_off_weight = 1.0 - 1.0 * bigram_data->header.total_bigram_in_count / bigram_data->header.total_bigram_count;
back_off_weight /= 1e6;
if (!bigram_data || !ci1 || !ci2) //合法性检查
return 1 / MAX_BCOUNT;
index0 = GetGramIndex(bigram_data);
item = GetGramItem(bigram_data);
//寻找词索引
ci1_index = GetCiIndex(bigram_data, ci1);
ci2_index = GetCiIndex(bigram_data, ci2);
ci1_freq = ci2_freq = 0;
if (ci1_index >= 0)
ci1_freq = index0[ci1_index].word_freq;
if (ci2_index >= 0)
ci2_freq = index0[ci2_index].word_freq;
if (ci1_index < 0 && ci2_index < 0)
return 1.0 / MAX_BCOUNT;
if (ci1_index < 0) //第一个词没有找到
{
//直接返回ci2的估值
value = 1.0 * ci2_freq / bigram_data->header.total_word_freq;
return value * back_off_weight;
}
if (ci2_index < 0) //进行回退
{
value = 1.0 / bigram_data->header.total_word_freq;
return value * back_off_weight;
}
//在item区域进行搜索
start = index0[ci1_index].item_index;
if (ci1_index == bigram_data->header.index0_count - 1) //最后一个
end = bigram_data->header.item_count - 1;
else
end = index0[ci1_index + 1].item_index - 1;
end_sav = end, start_sav = start;
//再次使用二分法进行查找
while (start <= end)
{
mid = (start + end) / 2;
ret = item[mid].word_index - ci2_index;
if (!ret)
break;
if (ret > 0)
end = mid - 1;
else
start = mid + 1;
}
//此时没有找到,则需要根据词频进行回退。
if (start > end)
return GetBackOffProbability(bigram_data, ci1_index, ci2_index);
//找到
if (mid > start_sav && item[mid - 1].word_index == ci2_index)
count = (item[mid].count << ONE_COUNT_BIT) | item[mid - 1].count;
else if (mid < end_sav && item[mid + 1].word_index == ci2_index)
count = (item[mid + 1].count << ONE_COUNT_BIT) | item[mid].count;
else
count = item[mid].count;
if (!ci1[2] && !ci2[2] && *(short*)ci1 != *(short*)"△" && *(short*)ci2 != *(short*)"△") //两个都是单字,将频率大幅降低
return 1.0 * count / ci1_freq * XM;
return 1.0 * count / index0[ci1_index].start_count;//ci1_freq;
}
/** 对词表进行加密
* 加密方法,循环右移7位,异或aa55
*/
void encode_word_list(char *word_list, int word_list_pos)
{
int index = 0;
unsigned short x;
return;
while(index < word_list_pos)
{
if (!word_list[index])
{
index++;
continue;
}
x = *(unsigned short*)&word_list[index];
x = ENCODE(x);
*(unsigned short*)&word_list[index] = x;
index += 2;
}
}
void decode_word_list(char *word_list, int word_list_pos)
{
int index = 0;
unsigned short x;
return;
while(index < word_list_pos)
{
if (!word_list[index])
{
index++;
continue;
}
x = *(unsigned short*)&word_list[index];
x = DECODE(x);
*(unsigned short*)&word_list[index] = x;
index += 2;
}
}