line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Lingua::RU::OpenCorpora::Tokenizer::Vectors; |
2
|
|
|
|
|
|
|
|
3
|
3
|
|
|
3
|
|
804
|
use strict; |
|
3
|
|
|
|
|
4
|
|
|
3
|
|
|
|
|
186
|
|
4
|
3
|
|
|
3
|
|
16
|
use warnings; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
91
|
|
5
|
3
|
|
|
3
|
|
2891
|
use parent 'Lingua::RU::OpenCorpora::Tokenizer::List'; |
|
3
|
|
|
|
|
913
|
|
|
3
|
|
|
|
|
16
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = 0.06; |
8
|
|
|
|
|
|
|
|
9
|
3
|
|
|
3
|
|
269
|
use File::ShareDir qw(dist_dir); |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
1150
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub new { |
12
|
2
|
|
|
2
|
1
|
14303
|
my($class, $args) = @_; |
13
|
|
|
|
|
|
|
|
14
|
2
|
|
100
|
|
|
20
|
$args ||= {}; |
15
|
2
|
|
33
|
|
|
27
|
$args->{data_dir} ||= dist_dir('Lingua-RU-OpenCorpora-Tokenizer'); |
16
|
|
|
|
|
|
|
|
17
|
2
|
|
|
|
|
410
|
my $self = $class->SUPER::new('vectors', $args); |
18
|
|
|
|
|
|
|
|
19
|
2
|
|
|
|
|
22
|
$self; |
20
|
|
|
|
|
|
|
} |
21
|
|
|
|
|
|
|
|
22
|
169
|
|
|
169
|
1
|
4086
|
sub in_list { $_[0]->{data}{$_[1]} } |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
sub _parse_list { |
25
|
2
|
|
|
2
|
|
7
|
my($self, $list) = @_; |
26
|
|
|
|
|
|
|
|
27
|
2
|
|
|
|
|
128
|
chomp @$list; |
28
|
2
|
|
|
|
|
1303
|
$self->{data} = +{ map split, @$list }; |
29
|
|
|
|
|
|
|
|
30
|
2
|
|
|
|
|
110
|
return; |
31
|
|
|
|
|
|
|
} |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
1; |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
__END__ |