-
Notifications
You must be signed in to change notification settings - Fork 5
/
termextract_mecab.pl
327 lines (289 loc) · 9.65 KB
/
termextract_mecab.pl
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
#!/usr/bin/perl
# termextract_mecab.pl
#
# 標準入力またはファイルから「和布蕪」の形態素解析済み
# のデータまたはプレーンテキストを読み取り
# 標準出力に専門用語とその重要度を返すプログラム
#
# Naoya Murakami <[email protected]>
use MeCab;
use TermExtract::MeCab;
use Getopt::Long;
#use strict;
$mecab = new MeCab::Tagger ();
my $base_dir = "/var/lib/termextract/";
my $data = new TermExtract::MeCab;
my %opts = ( input => "", output => 1,
limit => -1, threshold => -1,
is_mecab => 0, no_dic_filter => 0,
no_term_extract => 0,
no_stat => 0, no_storage => 0,
stat_db => "stat.db",
comb_db => "comb.db",
average_rate => 1,
pre_filter => "pre_filter.txt",
post_filter => "post_filter.txt",
use_total => 0, use_uniq => 0,
use_Perplexity => 0, no_LR => 0,
use_TF => 0, use_frq => 0, no_frq => 0,
use_SDBM => 0);
GetOptions(\%opts, qw( input=s output=i limit=i threshold=i
is_mecab no_dic_filter no_term_extract
stat_db=s comb_db=s average_rate=f
pre_filter=s post_filter=s
no_stat no_storage use_total use_uniq use_Perplexity
no_LR use_TF use_frq no_frq use_SDBM) ) or exit 1;
$opts{stat_db} = $base_dir . $opts{stat_db};
$opts{comb_db} = $base_dir . $opts{comb_db};
$opts{pre_filter} = $base_dir . $opts{pre_filter};
$opts{post_filter} = $base_dir . $opts{post_filter};
my $InputFile = "";
my $str = "";
if($opts{no_term_extract}) {
open(OUT, ">foo.csv");
}
if (defined $ARGV[0]){
$InputFile = $ARGV[0];
} elsif ($opts{input} eq ''){
while (defined(my $line = <STDIN>)){
if ($line eq "EOS\n") {
last;
}
$str .= $line;
if($opts{no_term_extract}) {
chomp($line);
printf OUT "%s,,,,名詞,一般,*,*,*,*,%s,*,*,ByMeCabEst\n", $line, $line;
}
}
} else {
$InputFile = $opts{input};
}
if ( $InputFile ne '' ) {
open (IN, $InputFile) or die "$!";
while (<IN>) {
$str .= $_;
if($opts{no_term_extract}) {
chomp($_);
printf OUT "%s,,,,名詞,一般,*,*,*,*,%s,*,*,ByMeCabEst\n", $_, $_;
}
}
close (IN);
}
if($opts{no_term_extract}) {
close(OUT);
$return_value = system "/usr/local/libexec/mecab/mecab-dict-index -m mecab-ipadic-2.7.0-20070801.model -d mecab-ipadic-2.7.0-20070801 -u foo.dic -f utf-8 -t utf-8 -a foo.csv > /dev/null";
open (IN, "foo.dic") or die "$!";
while (<IN>) {
printf "%s", $_;
}
$return_value = system "rm -f foo.csv foo.dic";
close(IN);
exit(0);
}
if($opts{is_mecab} == 0){
my $PreFilterFile = $opts{pre_filter};
my @pre_filter;
if ( $PreFilterFile ne '' ) {
open (IN, $PreFilterFile) or die "$!";
while (<IN>) {
chomp($_);
$str =~ s/$_/ /g;
}
close (IN);
}
$str =~ s/( )+/ /g;
my $parsed_str = "";
my $split_str = "";
if (length($str) < 1000000) {
$str = $mecab->parse($str);
} else {
$s = 0;
while($s*1000000 < length($str)){
$split_str = substr($str, $s*1000000, $s*1000000 + 1000000);
$parsed_str .= $mecab->parse($split_str);
$s++;
}
$str = $parsed_str;
}
}
# プロセスの異常終了時処理
# (ロックディレクトリを使用した場合のみ)
$SIG{INT} = $SIG{QUIT} = $SIG{TERM} = 'sigexit';
# 出力モードを指定
# 1 → 専門用語+重要度、2 → 専門用語のみ
# 3 → カンマ区切り
# 4 → IPADic形式
my $output_mode = $opts{output};
#
# 重要度計算で、連接語の"延べ数"、"異なり数"、"パープレキシティ"のい
# ずれをとるか選択。パープレキシティは「学習機能」を使えない
# また、"連接語の情報を使わない"選択もあり、この場合は用語出現回数
# (と設定されていればIDFの組み合わせ)で重要度計算を行う
# (デフォルトは"延べ数"をとる $obj->use_total)
#
if($opts{use_total}) {
$data->use_total; # 延べ数をとる
}
if($opts{use_uniq}) {
$data->use_uniq; # 異なり数をとる
}
if($opts{use_Perplexity}) {
$data->use_Perplexity; # パープレキシティをとる(TermExtract 3.04 以上)
}
if($opts{no_LR}) {
$data->no_LR; # 隣接情報を使わない (TermExtract 4.02 以上)
}
#
# 重要度計算で、連接情報に掛け合わせる用語出現頻度情報を選択する
# $data->no_LR; との組み合わせで用語出現頻度のみの重要度も算出可能
# (デフォルトは "Frequency" $data->use_frq)
# TFはある用語が他の用語の一部に使われていた場合にもカウント
# Frequency は用語が他の用語の一部に使われていた場合にカウントしない
#
if($opts{use_TF}) {
$data->use_TF; # TF (Term Frequency) (TermExtract 4.02 以上)
}
if(!$opts{use_TF}) {
$data->use_frq; # Frequencyによる用語頻度
}
if($opts{no_frq}) {
$data->no_frq; # 頻度情報を使わない
}
#
# 重要度計算で、学習機能を使うかどうか選択
# (デフォルトは、使用しない $obj->no_stat)
#
if($opts{no_stat}) {
$data->no_stat; # 学習機能を使わない
} else {
$data->use_stat; # 学習機能を使う
}
#
# 重要度計算で、「ドキュメント中の用語の頻度」と「連接語の重要度」
# のどちらに比重をおくかを設定する。
# デフォルト値は1
# 値が大きいほど「ドキュメント中の用語の頻度」の比重が高まる
#
$data->average_rate($opts{average_rate});
#
# 学習機能用DBにデータを蓄積するかどうか選択
# 重要度計算で、学習機能を使うときは、セットしておいたほうが
# 無難。処理対象に学習機能用DBに登録されていない語が含まれる
# と正しく動作しない。
# (デフォルトは、蓄積しない $obj->no_storage)
#
if($opts{no_storage}) {
$data->no_storage; # 蓄積しない
} else {
$data->use_storage; # 蓄積する
}
#
# 学習機能用DBに使用するDBMをSDBM_Fileに指定
# (デフォルトは、DB_FileのBTREEモード)
#
if($opts{use_SDBM}) {
$data->use_SDBM;
}
# 過去のドキュメントの累積統計を使う場合のデータベースの
# ファイル名をセット
# (デフォルトは "stat.db"と"comb.db")
#
$data->stat_db($opts{stat_db});
$data->comb_db($opts{comb_db});
#
# データベースの排他ロックのための一時ディレクトリを指定
# ディレクトリ名が空文字列(デフォルト)の場合はロックしない
#
#$data->lock_dir("lock_dir");
#
# 「形態素解析」済みのテキストファイルから、データを読み込み
# 専門用語リストを配列に返す
# (累積統計DB使用、ドキュメント中の頻度使用にセット)
#
my @noun_list = $data->get_imp_word($str, 'var'); # 入力が変数
# 前回読み込んだ「形態素解析」済みテキストファイルを元に
# モードを変えて、専門用語リストを配列に返す
#$data->use_stat->no_frq;
#my @noun_list2 = $data->get_imp_word();
# また、その結果を別のモードによる結果と掛け合わせる
#@noun_list = $data->result_filter (\@noun_list, \@noun_list2, 30, 1000);
#
# 専門用語リストと計算した重要度を標準出力に出す
#
my $PostFilterFile = $opts{post_filter};
my @post_filter;
if ( $PostFilterFile ne '' ) {
open (IN, $PostFilterFile) or die "$!";
while (<IN>) {
push @post_filter, $_;
}
close (IN);
}
if ($output_mode == 4) {
open(OUT, ">foo.csv");
}
$j = 1;
foreach (@noun_list) {
# 出力させない正規表現パターン
$next_flag = 0;
foreach my $i(0 .. $#post_filter){
if (substr($post_filter[$i], 0, 1) ne '#') {
chomp($post_filter[$i]);
if ($_->[0] =~ /$post_filter[$i]/) {
$next_flag = 1;
last;
}
}
}
if ($next_flag ==1) {
next;
}
# MeCab辞書に含まれているものは表示しない (未知語でないものが1個だけだった場合)
if ($opts{no_dic_filter} == 0) {
$mecab_miti = new MeCab::Tagger ('-F%f[0]\n -U\0 -E\0');
$miti_parsed = $mecab_miti->parse($_->[0]);
my $count = (() = $miti_parsed =~ /[\n]/g);
if($count == 1){
#printf "辞書登録あり:%s\n", $_->[0];
next;
} else {
#printf "辞書登録なし%d:%s\n", $count, $_->[0];
}
}
# 閾値以下は表示しない
if ($opts{threshold} ne -1) {
if ($_->[1] < $opts{threshold}) {
next;
}
}
# limit以上は表示しない
if ($opts{limit} ne -1) {
if ($opts{limit} < $j) {
next;
}
}
# 結果表示
printf "%-60s %16.2f\n", $_->[0], $_->[1] if $output_mode == 1;
printf "%s\n", $_->[0] if $output_mode == 2;
printf "%s,", $_->[0] if $output_mode == 3;
printf OUT "%s,,,,名詞,一般,*,*,*,*,%s,*,*,ByTermExtractEst\n",
$_->[0], $_->[0] if $output_mode == 4;
printf "%s,0,0,%d,名詞,一般,*,*,*,*,%s,*,*,ByTermExtractLen\n",
$_->[0],-10000-length($_->[0])*500,$_->[0] if $output_mode == 5;
$j++;
}
if ($output_mode == 4) {
close(OUT);
$return_value = system "/usr/local/libexec/mecab/mecab-dict-index -m mecab-ipadic-2.7.0-20070801.model -d mecab-ipadic-2.7.0-20070801 -u foo.dic -f utf-8 -t utf-8 -a foo.csv > /dev/null";
open (IN, "foo.dic") or die "$!";
while (<IN>) {
printf "%s", $_;
}
close(IN);
$return_value = system "rm -f foo.csv foo.dic"
}
# プロセスの異常終了時にDBのロックを解除
# (ロックディレクトリを使用した場合のみ)
sub sigexit {
$data->unlock_db;
}