Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 1 | #!/usr/local/bin/perl |
| 2 | use Inline C; |
Marc Kupietz | 00eecb1 | 2019-01-24 16:08:44 +0100 | [diff] [blame] | 3 | use Inline C => Config => CLEAN_AFTER_BUILD => 0, BUILD_NOISY => 1, ccflags => $Config{ccflags}." -I/vol/work/kupietz/Work2/kl/trunk/CollocatorDB -I, -L. -Wall -O4", libs => "-shared -lpthread -lcollocatordb -lrt -lsnappy -lz -lbz2 -llz4 -lzstd -lrocksdb -lgomp"; |
Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 4 | #use Inline C => Config => BUILD_NOISY => 1, CFLAGS => $Config{cflags}." -O4 -mtune k9"; |
| 5 | #use Inline C => Config => CLEAN_AFTER_BUILD => 0, ccflags => $Config{ccflags}." -Ofast -march k8 -mtune k8 "; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 6 | use Mojolicious::Lite; |
Marc Kupietz | c489336 | 2016-02-25 08:04:46 +0100 | [diff] [blame] | 7 | use Mojo::JSON qw(decode_json encode_json to_json); |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 8 | use base 'Mojolicious::Plugin'; |
| 9 | |
Marc Kupietz | 247500f | 2015-10-09 11:29:01 +0200 | [diff] [blame] | 10 | use Encode qw(decode encode); |
Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 11 | use Getopt::Std; |
Marc Kupietz | 7bc85fd | 2016-02-24 11:42:41 +0100 | [diff] [blame] | 12 | use Mojo::Server::Daemon; |
Marc Kupietz | ffef930 | 2017-11-07 15:58:01 +0100 | [diff] [blame] | 13 | use Cwd; |
Marc Kupietz | 66bfd95 | 2017-12-11 09:59:45 +0100 | [diff] [blame] | 14 | |
Marc Kupietz | ffef930 | 2017-11-07 15:58:01 +0100 | [diff] [blame] | 15 | app->static->paths->[0] = getcwd; |
| 16 | |
Marc Kupietz | d422739 | 2016-03-01 16:45:12 +0100 | [diff] [blame] | 17 | plugin 'Log::Access'; |
Marc Kupietz | b3422c1 | 2017-07-04 14:12:11 +0200 | [diff] [blame] | 18 | plugin "RequestBase"; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 19 | |
Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 20 | our $opt_i = 0; # latin1-input? |
| 21 | our $opt_l = undef; |
| 22 | our $opt_p = 5676; |
Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 23 | our $opt_m; |
Marc Kupietz | 6ed8187 | 2016-04-27 14:04:04 +0200 | [diff] [blame] | 24 | our $opt_M; |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 25 | our $opt_n = ''; |
| 26 | our $opt_d; |
Marc Kupietz | fa19426 | 2018-06-05 09:39:32 +0200 | [diff] [blame] | 27 | our $opt_D; |
Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 28 | our $opt_G; |
Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 29 | |
Marc Kupietz | 6ed8187 | 2016-04-27 14:04:04 +0200 | [diff] [blame] | 30 | my %marked; |
Marc Kupietz | c053d97 | 2019-01-10 10:41:51 +0100 | [diff] [blame] | 31 | my $title=""; |
Marc Kupietz | 793413b | 2016-04-02 21:48:57 +0200 | [diff] [blame] | 32 | my $training_args=""; |
Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 33 | my $mergedEnd=0; |
Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 34 | my %cache; |
Marc Kupietz | 19c6824 | 2018-03-12 09:42:21 +0100 | [diff] [blame] | 35 | my %cccache; # classic collocator cache |
Marc Kupietz | a51dcfa | 2018-03-19 16:22:05 +0100 | [diff] [blame] | 36 | my %spcache; # similar profile cache |
Marc Kupietz | 793413b | 2016-04-02 21:48:57 +0200 | [diff] [blame] | 37 | |
Marc Kupietz | fa19426 | 2018-06-05 09:39:32 +0200 | [diff] [blame] | 38 | getopts('d:D:Gil:p:m:n:M:'); |
Marc Kupietz | 6ed8187 | 2016-04-27 14:04:04 +0200 | [diff] [blame] | 39 | |
| 40 | if($opt_M) { |
Marc Kupietz | ed93021 | 2016-04-27 15:42:38 +0200 | [diff] [blame] | 41 | open my $handle, '<:encoding(UTF-8)', $opt_M |
| 42 | or die "Can't open '$opt_M' for reading: $!"; |
| 43 | while(<$handle>) { |
Marc Kupietz | 6ed8187 | 2016-04-27 14:04:04 +0200 | [diff] [blame] | 44 | foreach my $mw (split /\s+/) { |
| 45 | $marked{$mw}=1 |
| 46 | } |
| 47 | } |
Marc Kupietz | ed93021 | 2016-04-27 15:42:38 +0200 | [diff] [blame] | 48 | close($handle); |
Marc Kupietz | 6ed8187 | 2016-04-27 14:04:04 +0200 | [diff] [blame] | 49 | } |
Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 50 | |
Marc Kupietz | 7bc85fd | 2016-02-24 11:42:41 +0100 | [diff] [blame] | 51 | # -cbow 1 -size 200 -window 8 -negative 25 -hs 0 -sample 1e-4 -threads 40 -binary 1 -iter 15 |
Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 52 | if(!$ARGV[0]) { |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 53 | init_net("vectors15.bin", $opt_n, ($opt_i? 1 : 0)); |
Marc Kupietz | 2cb667e | 2016-03-10 09:44:12 +0100 | [diff] [blame] | 54 | } else { |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 55 | init_net($ARGV[0], $opt_n, ($opt_i? 1 : 0)); |
Marc Kupietz | 793413b | 2016-04-02 21:48:57 +0200 | [diff] [blame] | 56 | if(open(FILE, "$ARGV[0].args")) { |
| 57 | $training_args = <FILE>; |
| 58 | } |
| 59 | close(FILE); |
Marc Kupietz | c053d97 | 2019-01-10 10:41:51 +0100 | [diff] [blame] | 60 | $title = fname2corpusname($ARGV[0]); |
Marc Kupietz | 2cb667e | 2016-03-10 09:44:12 +0100 | [diff] [blame] | 61 | } |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 62 | |
Marc Kupietz | a51dcfa | 2018-03-19 16:22:05 +0100 | [diff] [blame] | 63 | my $have_sprofiles = load_sprofiles($ARGV[0]); |
| 64 | |
Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 65 | if($opt_m) { |
| 66 | $mergedEnd = mergeVectors($opt_m); |
Marc Kupietz | c053d97 | 2019-01-10 10:41:51 +0100 | [diff] [blame] | 67 | $title = "<span class=\"merged\">" . $title . "</span> vs. " . fname2corpusname($opt_m); |
Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 68 | } |
| 69 | |
Marc Kupietz | e5568a0 | 2018-12-20 11:42:02 +0100 | [diff] [blame] | 70 | |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 71 | if($opt_d) { # -d: dump vecs and exit |
| 72 | dump_vecs($opt_d); |
| 73 | exit; |
| 74 | } |
| 75 | |
Marc Kupietz | fa19426 | 2018-06-05 09:39:32 +0200 | [diff] [blame] | 76 | if($opt_D) { # -D: dump vecs for numpy and exit |
| 77 | dump_for_numpy($opt_D); |
| 78 | exit; |
| 79 | } |
| 80 | |
Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 81 | my $daemon = Mojo::Server::Daemon->new( |
| 82 | app => app, |
| 83 | listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"] |
| 84 | ); |
| 85 | |
Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 86 | if($opt_G) { |
| 87 | print "Filtering garbage\n"; |
| 88 | filter_garbage(); |
| 89 | } |
| 90 | |
Marc Kupietz | 554aff5 | 2017-11-09 14:42:09 +0100 | [diff] [blame] | 91 | get '*/js/*' => sub { |
Marc Kupietz | ffef930 | 2017-11-07 15:58:01 +0100 | [diff] [blame] | 92 | my $c = shift; |
| 93 | my $url = $c->req->url; |
| 94 | $url =~ s@/derekovecs@@g; |
| 95 | $c->app->log->info("GET: " . $url); |
| 96 | $c->reply->static($url); |
| 97 | }; |
| 98 | |
Marc Kupietz | a927057 | 2018-03-17 15:17:07 +0100 | [diff] [blame] | 99 | get '*/css/*' => sub { |
| 100 | my $c = shift; |
| 101 | my $url = $c->req->url; |
| 102 | $url =~ s@/derekovecs/@/@g; |
| 103 | $c->app->log->info("GET: " . $url); |
| 104 | $c->reply->static($url); |
| 105 | }; |
| 106 | |
Marc Kupietz | c053d97 | 2019-01-10 10:41:51 +0100 | [diff] [blame] | 107 | sub fname2corpusname { |
| 108 | ($_) = @_; |
| 109 | s@.*/@@; |
Marc Kupietz | 86b5029 | 2019-02-17 21:03:59 +0100 | [diff] [blame] | 110 | s@\.en@-en@; |
Marc Kupietz | c053d97 | 2019-01-10 10:41:51 +0100 | [diff] [blame] | 111 | s@\..*@@; |
| 112 | return $_; |
| 113 | } |
| 114 | |
Marc Kupietz | 19c6824 | 2018-03-12 09:42:21 +0100 | [diff] [blame] | 115 | sub getClassicCollocatorsCached { |
| 116 | my ($c, $word) = @_; |
Marc Kupietz | 81aeed2 | 2019-02-17 21:22:45 +0100 | [diff] [blame] | 117 | my $s2 = ""; |
Marc Kupietz | 9ff3c99 | 2019-02-04 12:32:54 +0100 | [diff] [blame] | 118 | if($word > $mergedEnd) { |
| 119 | $word-=$mergedEnd; |
| 120 | } |
Marc Kupietz | 81aeed2 | 2019-02-17 21:22:45 +0100 | [diff] [blame] | 121 | |
Marc Kupietz | 999ab8c | 2019-02-17 21:42:21 +0100 | [diff] [blame] | 122 | if($opt_p >= 5000 && $opt_p < 5600) { # German non-reference |
| 123 | open PIPE, "GET http://compute:5673/getClassicCollocators?w=$word |" ; |
| 124 | } |
Marc Kupietz | 19c6824 | 2018-03-12 09:42:21 +0100 | [diff] [blame] | 125 | if(!$cccache{$word}) { |
Marc Kupietz | 06d6129 | 2019-02-04 12:33:22 +0100 | [diff] [blame] | 126 | $c->app->log->info("Getting classic collocates of $word."); |
Marc Kupietz | 19c6824 | 2018-03-12 09:42:21 +0100 | [diff] [blame] | 127 | $cccache{$word} = getClassicCollocators($word); |
Marc Kupietz | 1d96a08 | 2019-02-18 09:29:06 +0100 | [diff] [blame] | 128 | $cccache{$word} =~ s/:(-?)(nan|inf)/:"${1}${2}"/g; |
Marc Kupietz | 19c6824 | 2018-03-12 09:42:21 +0100 | [diff] [blame] | 129 | } else { |
Marc Kupietz | 06d6129 | 2019-02-04 12:33:22 +0100 | [diff] [blame] | 130 | $c->app->log->info("Getting classic collocates for $word from cache."); |
Marc Kupietz | 19c6824 | 2018-03-12 09:42:21 +0100 | [diff] [blame] | 131 | } |
Marc Kupietz | 81aeed2 | 2019-02-17 21:22:45 +0100 | [diff] [blame] | 132 | if($opt_p >= 5000 && $opt_p < 5600) { # German non-reference |
Marc Kupietz | 999ab8c | 2019-02-17 21:42:21 +0100 | [diff] [blame] | 133 | while(<PIPE>) { |
| 134 | $s2 .= $_; |
| 135 | } |
| 136 | close(PIPE); |
Marc Kupietz | 81aeed2 | 2019-02-17 21:22:45 +0100 | [diff] [blame] | 137 | } |
Marc Kupietz | 999ab8c | 2019-02-17 21:42:21 +0100 | [diff] [blame] | 138 | |
Marc Kupietz | 81aeed2 | 2019-02-17 21:22:45 +0100 | [diff] [blame] | 139 | if(length($s2) > 2000) { |
| 140 | my $d1 = decode_json($cccache{$word}); |
| 141 | my $d2 = decode_json($s2); |
| 142 | my %d2ld; |
Marc Kupietz | 001bffd | 2019-02-21 08:52:41 +0100 | [diff] [blame] | 143 | my $minLd = 14; |
Marc Kupietz | 81aeed2 | 2019-02-17 21:22:45 +0100 | [diff] [blame] | 144 | foreach my $i (@{$d2->{collocates}}) { |
| 145 | $d2ld{$i->{word}}=$i->{ld}; |
Marc Kupietz | 001bffd | 2019-02-21 08:52:41 +0100 | [diff] [blame] | 146 | $minLd=$i->{ld} if($i->{ld} < $minLd); |
Marc Kupietz | 81aeed2 | 2019-02-17 21:22:45 +0100 | [diff] [blame] | 147 | } |
| 148 | foreach my $i (@{$d1->{collocates}}) { |
| 149 | my $w = $i->{word}; |
Marc Kupietz | 001bffd | 2019-02-21 08:52:41 +0100 | [diff] [blame] | 150 | $i->{delta} = $i->{ld} - (defined $d2ld{$w} ? $d2ld{$w} : $minLd-0.1); |
Marc Kupietz | 81aeed2 | 2019-02-17 21:22:45 +0100 | [diff] [blame] | 151 | } |
| 152 | return(encode_json($d1)); |
| 153 | } else { |
| 154 | my $d1 = decode_json($cccache{$word}); |
| 155 | foreach my $i (@{$d1->{collocates}}) { |
| 156 | $i->{delta} = 0; |
| 157 | } |
| 158 | return(encode_json($d1)); |
| 159 | } |
Marc Kupietz | 19c6824 | 2018-03-12 09:42:21 +0100 | [diff] [blame] | 160 | } |
| 161 | |
Marc Kupietz | a51dcfa | 2018-03-19 16:22:05 +0100 | [diff] [blame] | 162 | sub getSimilarProfilesCached { |
| 163 | my ($c, $word) = @_; |
| 164 | if(!$spcache{$word}) { |
| 165 | $spcache{$word} = getSimilarProfiles($word); |
| 166 | } else { |
| 167 | $c->app->log->info("Getting similar profiles for $word from cache:"); |
| 168 | print $spcache{$word}; |
| 169 | } |
| 170 | return $spcache{$word}; |
| 171 | } |
| 172 | |
Marc Kupietz | 66bfd95 | 2017-12-11 09:59:45 +0100 | [diff] [blame] | 173 | post '/derekovecs/getVecsByRanks' => sub { |
| 174 | my $self = shift; |
| 175 | my $vec = getVecs($self->req->json); |
| 176 | $self->render(json => $vec); |
| 177 | }; |
| 178 | |
Marc Kupietz | e13a355 | 2018-01-25 08:48:34 +0100 | [diff] [blame] | 179 | any '*/getClassicCollocators' => sub { |
Marc Kupietz | e243efd | 2018-01-11 22:19:24 +0100 | [diff] [blame] | 180 | my $self = shift; |
Marc Kupietz | 19c6824 | 2018-03-12 09:42:21 +0100 | [diff] [blame] | 181 | $self->render(data => getClassicCollocatorsCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json'); |
Marc Kupietz | e243efd | 2018-01-11 22:19:24 +0100 | [diff] [blame] | 182 | }; |
| 183 | |
Marc Kupietz | e13a355 | 2018-01-25 08:48:34 +0100 | [diff] [blame] | 184 | any '/getClassicCollocators' => sub { |
Marc Kupietz | e243efd | 2018-01-11 22:19:24 +0100 | [diff] [blame] | 185 | my $self = shift; |
Marc Kupietz | 19c6824 | 2018-03-12 09:42:21 +0100 | [diff] [blame] | 186 | $self->render(data => getClassicCollocatorsCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json'); |
Marc Kupietz | e243efd | 2018-01-11 22:19:24 +0100 | [diff] [blame] | 187 | }; |
| 188 | |
Marc Kupietz | d7760b4 | 2019-02-21 09:01:44 +0100 | [diff] [blame] | 189 | any '/getBiggestVocabDistances' => sub { |
| 190 | my $self = shift; |
| 191 | $self->render(data => getBiggestMergedDifferences(), format=>'json'); |
| 192 | }; |
| 193 | |
| 194 | any '*/getBiggestVocabDistances' => sub { |
| 195 | my $self = shift; |
| 196 | $self->render(data => getBiggestMergedDifferences(), format=>'json'); |
| 197 | }; |
| 198 | |
Marc Kupietz | a51dcfa | 2018-03-19 16:22:05 +0100 | [diff] [blame] | 199 | any '*/getSimilarProfiles' => sub { |
| 200 | my $self = shift; |
| 201 | $self->render(data => getSimilarProfilesCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json'); |
| 202 | }; |
| 203 | |
Marc Kupietz | c987fa8 | 2018-03-21 12:14:25 +0100 | [diff] [blame] | 204 | any '/getSimilarProfiles' => sub { |
| 205 | my $self = shift; |
| 206 | $self->render(data => getSimilarProfilesCached($self, $self->param("w") ? $self->param("w") : $self->req->json), format=>'json'); |
| 207 | }; |
| 208 | |
Marc Kupietz | df3d4b5 | 2017-11-29 16:57:27 +0100 | [diff] [blame] | 209 | get '*/img/*' => sub { |
| 210 | my $c = shift; |
| 211 | my $url = $c->req->url; |
| 212 | $url =~ s@/derekovecs@@g; |
| 213 | $c->app->log->info("GET: " . $url); |
| 214 | $c->reply->static($url); |
| 215 | }; |
| 216 | |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 217 | get '/' => sub { |
| 218 | my $c = shift; |
Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 219 | $c->app->log->info("get: ".$c->req->url->to_abs); |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 220 | my $word=$c->param('word'); |
Marc Kupietz | 2da2a81 | 2019-02-21 14:17:35 +0100 | [diff] [blame] | 221 | my $no_nbs=$c->param('n') || ($opt_m? 50 : 100); |
Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 222 | my $no_iterations=$c->param('N') || 2000; |
Marc Kupietz | d422739 | 2016-03-01 16:45:12 +0100 | [diff] [blame] | 223 | my $perplexity=$c->param('perplexity') || 20; |
Marc Kupietz | c4d62f8 | 2016-03-01 11:04:24 +0100 | [diff] [blame] | 224 | my $epsilon=$c->param('epsilon') || 5; |
Marc Kupietz | d7aea72 | 2016-03-02 11:59:12 +0100 | [diff] [blame] | 225 | my $som=$c->param('som') || 0; |
Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 226 | my $searchBaseVocabFirst=$c->param('sbf') || 0; |
Marc Kupietz | 6d9a678 | 2016-03-23 17:25:25 +0100 | [diff] [blame] | 227 | my $sort=$c->param('sort') || 0; |
Marc Kupietz | c469f3b | 2017-11-13 14:07:36 +0100 | [diff] [blame] | 228 | my $csv=$c->param('csv') || 0; |
Marc Kupietz | b613b05 | 2016-04-28 14:11:59 +0200 | [diff] [blame] | 229 | my $json=$c->param('json') || 0; |
Marc Kupietz | db2dc7e | 2017-12-02 12:04:03 +0100 | [diff] [blame] | 230 | my $cutoff=$c->param('cutoff') || 500000; |
Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 231 | my $dedupe=$c->param('dedupe') || 0; |
Marc Kupietz | ac707b3 | 2018-12-20 11:36:38 +0100 | [diff] [blame] | 232 | my $nosp=$c->param('nosp') || 0; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 233 | my $res; |
Marc Kupietz | 7b2cbeb | 2016-02-25 11:22:00 +0100 | [diff] [blame] | 234 | my @lists; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 235 | my @collocations; |
Marc Kupietz | 7bc85fd | 2016-02-24 11:42:41 +0100 | [diff] [blame] | 236 | if(defined($word) && $word !~ /^\s*$/) { |
| 237 | $c->inactivity_timeout(300); |
Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 238 | $word =~ s/\s+/ /g; |
Marc Kupietz | 3082fd0 | 2019-01-09 14:54:06 +0100 | [diff] [blame] | 239 | if($opt_m && $word !~ /\|/) { |
| 240 | $word .= "|$word"; |
| 241 | } |
Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 242 | for my $w (split(' *\| *', $word)) { |
Marc Kupietz | 3082fd0 | 2019-01-09 14:54:06 +0100 | [diff] [blame] | 243 | if($opt_m) { |
| 244 | if($searchBaseVocabFirst) { |
| 245 | $searchBaseVocabFirst=0; |
| 246 | } else { |
| 247 | $searchBaseVocabFirst=1; |
| 248 | } |
| 249 | } |
| 250 | if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe,$searchBaseVocabFirst}) { |
Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 251 | $c->app->log->info("Getting $w results from cache"); |
Marc Kupietz | 3082fd0 | 2019-01-09 14:54:06 +0100 | [diff] [blame] | 252 | $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe.$searchBaseVocabFirst} |
Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 253 | } else { |
Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 254 | $c->app->log->info('Looking for neighbours of '.$w); |
| 255 | if($opt_i) { |
Marc Kupietz | ac707b3 | 2018-12-20 11:36:38 +0100 | [diff] [blame] | 256 | $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp); |
Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 257 | } else { |
Marc Kupietz | ac707b3 | 2018-12-20 11:36:38 +0100 | [diff] [blame] | 258 | $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp); |
Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 259 | } |
Marc Kupietz | 2dd2dd7 | 2017-12-01 22:08:14 +0100 | [diff] [blame] | 260 | $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} = $res; |
Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 261 | } |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 262 | push(@lists, $res->{paradigmatic}); |
Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 263 | } |
| 264 | } |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 265 | $word =~ s/ *\| */ | /g; |
Marc Kupietz | b613b05 | 2016-04-28 14:11:59 +0200 | [diff] [blame] | 266 | if($json) { |
| 267 | return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}}); |
Marc Kupietz | c469f3b | 2017-11-13 14:07:36 +0100 | [diff] [blame] | 268 | } elsif($csv) { |
| 269 | my $csv_data=""; |
| 270 | for (my $i=0; $i <= $no_nbs; $i++) { |
| 271 | $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", "; |
| 272 | } |
| 273 | for (my $i=0; $i < $no_nbs; $i++) { |
| 274 | $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", "; |
| 275 | } |
| 276 | chop $csv_data; |
| 277 | chop $csv_data; |
| 278 | $csv_data .= "\n"; |
| 279 | return $c->render(text=>$csv_data); |
Marc Kupietz | b613b05 | 2016-04-28 14:11:59 +0200 | [diff] [blame] | 280 | } else { |
Marc Kupietz | d7760b4 | 2019-02-21 09:01:44 +0100 | [diff] [blame] | 281 | my $distantWords=""; |
| 282 | if(!defined($word) || $word !~ /^\s*$/) { |
| 283 | $distantWords = getBiggestMergedDifferences(); |
| 284 | } |
| 285 | $c->render(template=>"index", title=>$title, word=>$word, distantWords=>$distantWords, cutoff=>$cutoff, no_nbs=>$no_nbs, no_iterations => $no_iterations, epsilon=> $epsilon, perplexity=> $perplexity, show_som=>$som, searchBaseVocabFirst=>$searchBaseVocabFirst, sort=>$sort, training_args=>$training_args, mergedEnd=> $mergedEnd, haveSProfiles=> $have_sprofiles, dedupe=> $dedupe, marked=>\%marked, lists=> \@lists, collocators=> $res->{syntagmatic}); |
Marc Kupietz | b613b05 | 2016-04-28 14:11:59 +0200 | [diff] [blame] | 286 | } |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 287 | }; |
| 288 | |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 289 | helper(bitvec2window => sub { |
| 290 | my ($self, $n) = @_; |
| 291 | my $str = unpack("B32", pack("N", $n)); |
| 292 | $str =~ s/^\d{22}//; |
| 293 | $str =~ s/^(\d{5})/$1x/; |
| 294 | $str =~ s/0/·/g; |
| 295 | $str =~ s/1/+/g; |
| 296 | return $str; |
| 297 | }); |
| 298 | |
Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 299 | $daemon->run; # app->start; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 300 | |
| 301 | exit; |
| 302 | |
| 303 | __END__ |
| 304 | |
| 305 | __C__ |
| 306 | #include <stdio.h> |
| 307 | #include <string.h> |
| 308 | #include <math.h> |
| 309 | #include <malloc.h> |
| 310 | #include <stdlib.h> //strlen |
Marc Kupietz | f080976 | 2016-02-26 10:13:47 +0100 | [diff] [blame] | 311 | #include <sys/mman.h> |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 312 | #include <pthread.h> |
Marc Kupietz | e243efd | 2018-01-11 22:19:24 +0100 | [diff] [blame] | 313 | #include <collocatordb.h> |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 314 | |
| 315 | #define max_size 2000 |
| 316 | #define max_w 50 |
Marc Kupietz | 7bc85fd | 2016-02-24 11:42:41 +0100 | [diff] [blame] | 317 | #define MAX_NEIGHBOURS 1000 |
Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 318 | #define MAX_WORDS -1 |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 319 | #define MAX_THREADS 100 |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 320 | #define MAX_CC 50 |
| 321 | #define EXP_TABLE_SIZE 1000 |
| 322 | #define MAX_EXP 6 |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 323 | #define MIN_RESP 0.50 |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 324 | |
| 325 | //the thread function |
| 326 | void *connection_handler(void *); |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 327 | |
| 328 | typedef struct { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 329 | long long wordi; |
| 330 | long position; |
| 331 | float activation; |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 332 | float average; |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 333 | float cprobability; // column wise probability |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 334 | float cprobability_sum; |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 335 | float probability; |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 336 | float activation_sum; |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 337 | float max_activation; |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 338 | float heat[16]; |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 339 | } collocator; |
| 340 | |
| 341 | typedef struct { |
| 342 | collocator *best; |
Marc Kupietz | 80abb44 | 2016-03-23 21:04:08 +0100 | [diff] [blame] | 343 | int length; |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 344 | } knn; |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 345 | |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 346 | typedef struct { |
Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 347 | long long wordi[MAX_NEIGHBOURS]; |
| 348 | char sep[MAX_NEIGHBOURS]; |
| 349 | int length; |
| 350 | } wordlist; |
| 351 | |
| 352 | typedef struct { |
Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 353 | long cutoff; |
Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 354 | wordlist *wl; |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 355 | char *token; |
| 356 | int N; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 357 | long from; |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 358 | unsigned long upto; |
Marc Kupietz | c55c887 | 2017-12-01 23:27:10 +0100 | [diff] [blame] | 359 | collocator *best; |
Marc Kupietz | ce3d4c6 | 2016-03-23 16:11:25 +0100 | [diff] [blame] | 360 | float *target_sums; |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 361 | float *window_sums; |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 362 | } knnpars; |
| 363 | |
Marc Kupietz | a51dcfa | 2018-03-19 16:22:05 +0100 | [diff] [blame] | 364 | typedef struct { |
| 365 | uint32_t index; |
| 366 | float value; |
| 367 | } sparse_t; |
| 368 | |
| 369 | typedef struct { |
| 370 | uint32_t len; |
| 371 | sparse_t nbr[100]; |
| 372 | } profile_t; |
| 373 | |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 374 | float *M, *M2=0L, *syn1neg_window, *expTable; |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 375 | float *window_sums; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 376 | char *vocab; |
Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 377 | char *garbage = NULL; |
Marc Kupietz | e243efd | 2018-01-11 22:19:24 +0100 | [diff] [blame] | 378 | COLLOCATORDB *cdb = NULL; |
Marc Kupietz | a51dcfa | 2018-03-19 16:22:05 +0100 | [diff] [blame] | 379 | profile_t *sprofiles = NULL; |
| 380 | size_t sprofiles_qty = 0; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 381 | |
Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 382 | long long words, size, merged_end; |
Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 383 | long long merge_words = 0; |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 384 | int num_threads=20; |
Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 385 | int latin_enc=0; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 386 | int window; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 387 | |
Marc Kupietz | a51dcfa | 2018-03-19 16:22:05 +0100 | [diff] [blame] | 388 | /* load collocation profiles if file exists */ |
| 389 | int load_sprofiles(char *vecsname) { |
| 390 | char *basename = strdup(vecsname); |
| 391 | char *pos = strstr(basename, ".vecs"); |
| 392 | if(pos) |
| 393 | *pos=0; |
| 394 | |
| 395 | char binsprofiles_fname[256]; |
| 396 | strcpy(binsprofiles_fname, basename); |
| 397 | strcat(binsprofiles_fname, ".sprofiles.bin"); |
| 398 | FILE *fp = fopen(binsprofiles_fname, "rb"); |
| 399 | if (fp == NULL) { |
| 400 | printf("Collocation profiles %s not found. No problem.\n", binsprofiles_fname); |
| 401 | return 0; |
| 402 | } |
| 403 | fseek(fp, 0L, SEEK_END); |
| 404 | size_t sz = ftell(fp); |
| 405 | fclose(fp); |
| 406 | |
| 407 | int fd = open(binsprofiles_fname, O_RDONLY); |
| 408 | sprofiles = mmap(0, sz, PROT_READ, MAP_SHARED, fd, 0); |
| 409 | if (sprofiles == MAP_FAILED) { |
| 410 | close(fd); |
| 411 | fprintf(stderr, "Cannot mmap %s\n", binsprofiles_fname); |
| 412 | sprofiles = NULL; |
| 413 | return 0; |
| 414 | } else { |
| 415 | sprofiles_qty = sz / sizeof(profile_t); |
| 416 | fprintf(stderr, "Successfully mmaped %s containing similar profiles for %ld word forms.\n", binsprofiles_fname, sprofiles_qty); |
| 417 | } |
| 418 | return 1; |
| 419 | } |
| 420 | |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 421 | int init_net(char *file_name, char *net_name, int latin) { |
Marc Kupietz | 67c2028 | 2016-02-26 09:42:00 +0100 | [diff] [blame] | 422 | FILE *f, *binvecs, *binwords; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 423 | int binwords_fd, binvecs_fd, net_fd, i; |
Marc Kupietz | 82b0267 | 2016-02-26 12:32:25 +0100 | [diff] [blame] | 424 | long long a, b, c, d, cn; |
| 425 | float len; |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 426 | double val; |
Marc Kupietz | 82b0267 | 2016-02-26 12:32:25 +0100 | [diff] [blame] | 427 | |
Marc Kupietz | 67c2028 | 2016-02-26 09:42:00 +0100 | [diff] [blame] | 428 | char binvecs_fname[256], binwords_fname[256]; |
| 429 | strcpy(binwords_fname, file_name); |
| 430 | strcat(binwords_fname, ".words"); |
| 431 | strcpy(binvecs_fname, file_name); |
| 432 | strcat(binvecs_fname, ".vecs"); |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 433 | |
Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 434 | latin_enc = latin; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 435 | f = fopen(file_name, "rb"); |
| 436 | if (f == NULL) { |
| 437 | printf("Input file %s not found\n", file_name); |
| 438 | return -1; |
| 439 | } |
| 440 | fscanf(f, "%lld", &words); |
Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 441 | if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 442 | fscanf(f, "%lld", &size); |
Marc Kupietz | 2cb667e | 2016-03-10 09:44:12 +0100 | [diff] [blame] | 443 | if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0 || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) { |
| 444 | printf("Converting %s to memory mappable structures\n", file_name); |
Marc Kupietz | f080976 | 2016-02-26 10:13:47 +0100 | [diff] [blame] | 445 | vocab = (char *)malloc((long long)words * max_w * sizeof(char)); |
| 446 | M = (float *)malloc((long long)words * (long long)size * sizeof(float)); |
| 447 | if (M == NULL) { |
| 448 | printf("Cannot allocate memory: %lld MB %lld %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size); |
| 449 | return -1; |
| 450 | } |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 451 | if(strstr(file_name, ".txt")) { |
| 452 | for (b = 0; b < words; b++) { |
| 453 | a = 0; |
| 454 | while (1) { |
| 455 | vocab[b * max_w + a] = fgetc(f); |
| 456 | if (feof(f) || (vocab[b * max_w + a] == ' ')) break; |
| 457 | if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++; |
| 458 | } |
| 459 | vocab[b * max_w + a] = 0; |
| 460 | len = 0; |
| 461 | for (a = 0; a < size; a++) { |
| 462 | fscanf(f, "%lf", &val); |
| 463 | M[a + b * size] = val; |
| 464 | len += val * val; |
| 465 | } |
| 466 | len = sqrt(len); |
| 467 | for (a = 0; a < size; a++) M[a + b * size] /= len; |
| 468 | } |
| 469 | } else { |
| 470 | for (b = 0; b < words; b++) { |
| 471 | a = 0; |
| 472 | while (1) { |
| 473 | vocab[b * max_w + a] = fgetc(f); |
| 474 | if (feof(f) || (vocab[b * max_w + a] == ' ')) break; |
| 475 | if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++; |
| 476 | } |
| 477 | vocab[b * max_w + a] = 0; |
| 478 | fread(&M[b * size], sizeof(float), size, f); |
| 479 | len = 0; |
| 480 | for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size]; |
| 481 | len = sqrt(len); |
| 482 | for (a = 0; a < size; a++) M[a + b * size] /= len; |
| 483 | } |
| 484 | } |
Marc Kupietz | 67c2028 | 2016-02-26 09:42:00 +0100 | [diff] [blame] | 485 | if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) { |
| 486 | fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs); |
| 487 | fclose(binvecs); |
| 488 | fwrite(vocab, sizeof(char), (long long)words * max_w, binwords); |
| 489 | fclose(binwords); |
| 490 | } |
Marc Kupietz | 2cb667e | 2016-03-10 09:44:12 +0100 | [diff] [blame] | 491 | } |
| 492 | if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) { |
| 493 | M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0); |
| 494 | vocab = mmap(0, sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0); |
| 495 | if (M == MAP_FAILED || vocab == MAP_FAILED) { |
| 496 | close(binvecs_fd); |
| 497 | close(binwords_fd); |
| 498 | fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname); |
| 499 | exit(-1); |
| 500 | } |
| 501 | } else { |
| 502 | fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname); |
| 503 | exit(-1); |
Marc Kupietz | 67c2028 | 2016-02-26 09:42:00 +0100 | [diff] [blame] | 504 | } |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 505 | fclose(f); |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 506 | |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 507 | if(net_name && strlen(net_name) > 0) { |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 508 | if( (net_fd = open(net_name, O_RDONLY)) >= 0) { |
| 509 | window = (lseek(net_fd, 0, SEEK_END) - sizeof(float) * words * size) / words / size / sizeof(float) / 2; |
| 510 | // lseek(net_fd, sizeof(float) * words * size, SEEK_SET); |
Marc Kupietz | 10bec2b | 2016-03-23 09:41:31 +0100 | [diff] [blame] | 511 | // munmap(M, sizeof(float) * words * size); |
| 512 | M2 = mmap(0, sizeof(float) * words * size + sizeof(float) * 2 * window * size * words, PROT_READ, MAP_SHARED, net_fd, 0); |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 513 | if (M2 == MAP_FAILED) { |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 514 | close(net_fd); |
| 515 | fprintf(stderr, "Cannot mmap %s\n", net_name); |
| 516 | exit(-1); |
| 517 | } |
Marc Kupietz | 10bec2b | 2016-03-23 09:41:31 +0100 | [diff] [blame] | 518 | syn1neg_window = M2 + words * size; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 519 | } else { |
| 520 | fprintf(stderr, "Cannot open %s\n", net_name); |
| 521 | exit(-1); |
| 522 | } |
| 523 | fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window); |
Marc Kupietz | e243efd | 2018-01-11 22:19:24 +0100 | [diff] [blame] | 524 | |
| 525 | char collocatordb_name[2048]; |
| 526 | strcpy(collocatordb_name, net_name); |
| 527 | char *ext = rindex(collocatordb_name, '.'); |
| 528 | if(ext) { |
| 529 | strcpy(ext, ".rocksdb"); |
| 530 | if(access(collocatordb_name, R_OK) == 0) { |
| 531 | *ext = 0; |
| 532 | fprintf(stderr, "Opening collocator DB %s\n", collocatordb_name); |
| 533 | cdb = open_collocatordb(collocatordb_name); |
| 534 | } |
| 535 | } |
| 536 | } |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 537 | |
| 538 | expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float)); |
| 539 | for (i = 0; i < EXP_TABLE_SIZE; i++) { |
| 540 | expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table |
| 541 | expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1) |
| 542 | } |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 543 | window_sums = malloc(sizeof(float) * (window+1) * 2); |
Marc Kupietz | a51dcfa | 2018-03-19 16:22:05 +0100 | [diff] [blame] | 544 | |
| 545 | return 0; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 546 | } |
| 547 | |
Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 548 | long mergeVectors(char *file_name){ |
| 549 | FILE *f, *binvecs, *binwords; |
| 550 | int binwords_fd, binvecs_fd, net_fd, i; |
| 551 | long long a, b, c, d, cn; |
| 552 | float len; |
| 553 | float *merge_vecs; |
| 554 | char *merge_vocab; |
Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 555 | /* long long merge_words, merge_size; */ |
| 556 | long long merge_size; |
Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 557 | |
| 558 | char binvecs_fname[256], binwords_fname[256]; |
| 559 | strcpy(binwords_fname, file_name); |
| 560 | strcat(binwords_fname, ".words"); |
| 561 | strcpy(binvecs_fname, file_name); |
| 562 | strcat(binvecs_fname, ".vecs"); |
| 563 | |
| 564 | f = fopen(file_name, "rb"); |
| 565 | if (f == NULL) { |
| 566 | printf("Input file %s not found\n", file_name); |
| 567 | exit -1; |
| 568 | } |
| 569 | fscanf(f, "%lld", &merge_words); |
| 570 | fscanf(f, "%lld", &merge_size); |
| 571 | if(merge_size != size){ |
| 572 | fprintf(stderr, "vectors must have the same length\n"); |
| 573 | exit(-1); |
| 574 | } |
| 575 | if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) { |
| 576 | merge_vecs = malloc(sizeof(float) * (words + merge_words) * size); |
| 577 | merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w); |
| 578 | if (merge_vecs == NULL || merge_vocab == NULL) { |
| 579 | close(binvecs_fd); |
| 580 | close(binwords_fd); |
| 581 | fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname); |
| 582 | exit(-1); |
| 583 | } |
| 584 | read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float)); |
| 585 | read(binwords_fd, merge_vocab, merge_words * max_w); |
| 586 | } else { |
| 587 | fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname); |
| 588 | exit(-1); |
| 589 | } |
| 590 | printf("Successfully reallocated memory\nMerging...\n"); |
| 591 | fflush(stdout); |
| 592 | memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float)); |
| 593 | memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w); |
| 594 | munmap(M, words * size * sizeof(float)); |
| 595 | munmap(vocab, words * max_w); |
| 596 | M = merge_vecs; |
| 597 | vocab = merge_vocab; |
| 598 | merged_end = merge_words; |
| 599 | words += merge_words; |
| 600 | fclose(f); |
| 601 | printf("merged_end: %lld, words: %lld\n", merged_end, words); |
Marc Kupietz | d7760b4 | 2019-02-21 09:01:44 +0100 | [diff] [blame] | 602 | //printBiggestMergedDifferences(); |
Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 603 | return((long) merged_end); |
| 604 | } |
| 605 | |
Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 606 | void filter_garbage() { |
| 607 | long i; |
Marc Kupietz | ab591a8 | 2016-04-28 14:08:49 +0200 | [diff] [blame] | 608 | unsigned char *w, previous, c; |
Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 609 | garbage = malloc(words); |
| 610 | memset(garbage, 0, words); |
| 611 | for (i = 0; i < words; i++) { |
| 612 | w = vocab + i * max_w; |
| 613 | previous = 0; |
Marc Kupietz | 969adfa | 2018-03-12 09:43:53 +0100 | [diff] [blame] | 614 | if(strncmp("quot", w, 4) == 0) { |
| 615 | garbage[i]=1; |
Marc Kupietz | a51dcfa | 2018-03-19 16:22:05 +0100 | [diff] [blame] | 616 | // printf("Gargabe: %s\n", vocab + i * max_w); |
Marc Kupietz | 969adfa | 2018-03-12 09:43:53 +0100 | [diff] [blame] | 617 | } else { |
| 618 | while((c = *w++) && !garbage[i]) { |
| 619 | if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) || |
| 620 | (previous == '-' && (c & 32)) || |
| 621 | (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) || |
| 622 | (previous == 'q' && c == 'u' && *(w) == 'o' && *(w+1) == 't') || /* quot */ |
| 623 | c == '<' |
| 624 | ) { |
| 625 | garbage[i]=1; |
| 626 | continue; |
| 627 | } |
| 628 | previous = c; |
Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 629 | } |
Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 630 | } |
| 631 | } |
| 632 | return; |
| 633 | } |
| 634 | |
Marc Kupietz | ac707b3 | 2018-12-20 11:36:38 +0100 | [diff] [blame] | 635 | |
| 636 | knn *simpleGetCollocators(int word, int number, long cutoff, int *result) { |
| 637 | knnpars *pars = calloc(sizeof(knnpars), 1); |
| 638 | float *target_sums; |
| 639 | float *window_sums = malloc(sizeof(float) * (window+1) * 2); |
| 640 | pars->cutoff = (cutoff? cutoff : 300000); |
| 641 | long a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float)); |
| 642 | for(a = 0; a < cutoff; a++) |
| 643 | target_sums[a] = 0; |
| 644 | pars->target_sums = target_sums; |
| 645 | pars->window_sums = window_sums; |
| 646 | pars->N = (number? number : 20); |
| 647 | pars->from = 0; |
| 648 | pars->upto = window * 2 -1; |
Marc Kupietz | 7631e02 | 2019-01-25 12:04:42 +0100 | [diff] [blame] | 649 | knn *syn_nbs = NULL; // = (knn*) getCollocators(pars); |
Marc Kupietz | ac707b3 | 2018-12-20 11:36:38 +0100 | [diff] [blame] | 650 | free(pars); |
| 651 | free(window_sums); |
| 652 | free(target_sums); |
| 653 | return syn_nbs; |
| 654 | } |
| 655 | |
Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 656 | void *getCollocators(void *args) { |
| 657 | knnpars *pars = args; |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 658 | int N = pars->N; |
Marc Kupietz | 5270283 | 2019-01-15 17:55:52 +0100 | [diff] [blame] | 659 | |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 660 | int cc = pars->wl->wordi[0]; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 661 | knn *nbs = NULL; |
| 662 | long window_layer_size = size * window * 2; |
| 663 | long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target; |
| 664 | float f, max_f, maxmax_f; |
Marc Kupietz | 7631e02 | 2019-01-25 12:04:42 +0100 | [diff] [blame] | 665 | float *target_sums=NULL, worstbest, wpos_sum; |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 666 | collocator *best; |
Marc Kupietz | d564258 | 2016-03-19 22:23:13 +0100 | [diff] [blame] | 667 | |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 668 | if(M2 == NULL || cc == -1) |
Marc Kupietz | d564258 | 2016-03-19 22:23:13 +0100 | [diff] [blame] | 669 | return NULL; |
| 670 | |
Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 671 | a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float)); |
Marc Kupietz | 7631e02 | 2019-01-25 12:04:42 +0100 | [diff] [blame] | 672 | memset(target_sums, 0, pars->cutoff * sizeof(float)); |
| 673 | best = malloc((N>200?N:200) * sizeof(collocator)); |
| 674 | memset(best, 0, (N>200?N:200) * sizeof(collocator)); |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 675 | worstbest = MIN_RESP; |
| 676 | |
Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 677 | for (b = 0; b < pars->cutoff; b++) |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 678 | target_sums[b]=0; |
Marc Kupietz | b864ccf | 2016-03-21 22:40:03 +0100 | [diff] [blame] | 679 | for (b = 0; b < N; b++) { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 680 | best[b].wordi = -1; |
| 681 | best[b].probability = 1; |
| 682 | best[b].activation = worstbest; |
Marc Kupietz | b864ccf | 2016-03-21 22:40:03 +0100 | [diff] [blame] | 683 | } |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 684 | |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 685 | d = cc; |
| 686 | maxmax_f = -1; |
| 687 | maxmax_target = 0; |
| 688 | |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 689 | for (a = pars->from; a < pars->upto; a++) { |
| 690 | if(a >= window) |
| 691 | a++; |
Marc Kupietz | b864ccf | 2016-03-21 22:40:03 +0100 | [diff] [blame] | 692 | wpos_sum = 0; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 693 | printf("window pos: %ld\n", a); |
| 694 | if (a != window) { |
| 695 | max_f = -1; |
| 696 | window_offset = a * size; |
| 697 | if (a > window) |
| 698 | window_offset -= size; |
Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 699 | for(target = 0; target < pars->cutoff; target ++) { |
| 700 | if(garbage && garbage[target]) continue; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 701 | if(target == d) |
| 702 | continue; |
| 703 | f = 0; |
| 704 | for (c = 0; c < size; c++) |
Marc Kupietz | 10bec2b | 2016-03-23 09:41:31 +0100 | [diff] [blame] | 705 | f += M2[d* size + c] * syn1neg_window[target * window_layer_size + window_offset + c]; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 706 | if (f < -MAX_EXP) |
| 707 | continue; |
| 708 | else if (f > MAX_EXP) |
| 709 | continue; |
| 710 | else |
| 711 | f = expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))]; |
Marc Kupietz | b864ccf | 2016-03-21 22:40:03 +0100 | [diff] [blame] | 712 | wpos_sum += f; |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 713 | |
Marc Kupietz | ce3d4c6 | 2016-03-23 16:11:25 +0100 | [diff] [blame] | 714 | target_sums[target] += f; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 715 | if(f > worstbest) { |
Marc Kupietz | 6d9a678 | 2016-03-23 17:25:25 +0100 | [diff] [blame] | 716 | for (b = 0; b < N; b++) { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 717 | if (f > best[b].activation) { |
| 718 | memmove(best + b + 1, best + b, (N - b -1) * sizeof(collocator)); |
| 719 | best[b].activation = f; |
| 720 | best[b].wordi = target; |
| 721 | best[b].position = window-a; |
Marc Kupietz | 33679a3 | 2016-03-22 08:49:39 +0100 | [diff] [blame] | 722 | break; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 723 | } |
| 724 | } |
Marc Kupietz | 6d9a678 | 2016-03-23 17:25:25 +0100 | [diff] [blame] | 725 | if(b == N - 1) |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 726 | worstbest = best[N-1].activation; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 727 | } |
| 728 | } |
| 729 | printf("%d %.2f\n", max_target, max_f); |
| 730 | printf("%s (%.2f) ", &vocab[max_target * max_w], max_f); |
| 731 | if(max_f > maxmax_f) { |
| 732 | maxmax_f = max_f; |
| 733 | maxmax_target = max_target; |
| 734 | } |
Marc Kupietz | 33679a3 | 2016-03-22 08:49:39 +0100 | [diff] [blame] | 735 | for (b = 0; b < N; b++) |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 736 | if(best[b].position == window-a) |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 737 | best[b].cprobability = best[b].activation / wpos_sum; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 738 | } else { |
| 739 | printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]); |
| 740 | } |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 741 | pars->window_sums[a] = wpos_sum; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 742 | } |
Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 743 | for (b = 0; b < pars->cutoff; b++) |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 744 | pars->target_sums[b] += target_sums[b]; //(target_sums[b] / wpos_sum ) / (window * 2); |
| 745 | printf("Target-Summe von 0: %f\n", pars->target_sums[150298]); |
Marc Kupietz | ce3d4c6 | 2016-03-23 16:11:25 +0100 | [diff] [blame] | 746 | free(target_sums); |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 747 | for(b=0; b<N && best[b].wordi >= 0; b++);; // THIS LOOP IS NEEDED (b...) |
| 748 | // printf("%d: best syn: %s %.2f %.5f\n", b, &vocab[best[b].wordi*max_w], best[b].activation, best[b].probability); |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 749 | // printf("\n"); |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 750 | nbs = malloc(sizeof(knn)); |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 751 | nbs->best = best; |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 752 | nbs->length = b-1; |
| 753 | pthread_exit(nbs); |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 754 | } |
| 755 | |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 756 | |
Marc Kupietz | 66bfd95 | 2017-12-11 09:59:45 +0100 | [diff] [blame] | 757 | AV *getVecs(AV *array) { |
| 758 | int i, b; |
| 759 | AV *result = newAV(); |
| 760 | for (i=0; i<=av_len(array); i++) { |
| 761 | SV** elem = av_fetch(array, i, 0); |
| 762 | if (elem != NULL) { |
| 763 | long j = (long) SvNV(*elem); |
| 764 | AV *vector = newAV(); |
| 765 | for (b = 0; b < size; b++) { |
| 766 | av_push(vector, newSVnv(M[b + j * size])); |
| 767 | } |
| 768 | av_push(result, newRV_noinc(vector)); |
| 769 | } |
| 770 | } |
| 771 | return result; |
| 772 | } |
| 773 | |
Marc Kupietz | a51dcfa | 2018-03-19 16:22:05 +0100 | [diff] [blame] | 774 | char *getSimilarProfiles(long node) { |
| 775 | int i; |
| 776 | char buffer[120000]; |
| 777 | char pair_buffer[2048]; |
| 778 | buffer[0]='['; |
| 779 | buffer[1]=0; |
| 780 | if(node >= sprofiles_qty) { |
| 781 | printf("Not available in precomputed profile\n"); |
| 782 | return(strdup("[{\"w\":\"not available\", \"v\":0}]\n")); |
| 783 | } |
| 784 | |
| 785 | printf("******* %s ******\n", &vocab[max_w * node]); |
| 786 | |
| 787 | for(i=0; i < 100 && i < sprofiles[node].len; i++) { |
| 788 | sprintf(pair_buffer, "{\"w\":\"%s\", \"v\":%f},", &vocab[max_w * (sprofiles[node].nbr[i].index)], sprofiles[node].nbr[i].value); |
| 789 | strcat(buffer, pair_buffer); |
| 790 | } |
| 791 | buffer[strlen(buffer)-1]=']'; |
| 792 | strcat(buffer, "\n"); |
| 793 | printf(buffer); |
| 794 | return(strdup(buffer)); |
| 795 | } |
| 796 | |
Marc Kupietz | e243efd | 2018-01-11 22:19:24 +0100 | [diff] [blame] | 797 | char *getClassicCollocators(long node) { |
| 798 | char *res = (cdb? strdup(get_collocators_as_json(cdb, node)) : "[]"); |
| 799 | return res; |
| 800 | } |
| 801 | |
Marc Kupietz | 0957d53 | 2019-01-03 17:54:00 +0100 | [diff] [blame] | 802 | wordlist *getTargetWords(char *st1, int search_backw) { |
Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 803 | wordlist *wl = malloc(sizeof(wordlist)); |
| 804 | char st[100][max_size], sep[100]; |
Marc Kupietz | 1f36dfa | 2019-01-03 16:18:12 +0100 | [diff] [blame] | 805 | long a, b=0, c=0, cn=0; |
Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 806 | int unmerged; |
| 807 | |
Marc Kupietz | 1f36dfa | 2019-01-03 16:18:12 +0100 | [diff] [blame] | 808 | while (1) { |
| 809 | st[cn][b] = st1[c]; |
Marc Kupietz | 1f36dfa | 2019-01-03 16:18:12 +0100 | [diff] [blame] | 810 | b++; |
| 811 | c++; |
| 812 | st[cn][b] = 0; |
| 813 | if (st1[c] == 0) break; |
| 814 | if (st1[c] == ' ' || st1[c] == '-') { |
Marc Kupietz | 95aa1c0 | 2016-03-15 09:40:43 +0100 | [diff] [blame] | 815 | sep[cn++] = st1[c]; |
Marc Kupietz | 1f36dfa | 2019-01-03 16:18:12 +0100 | [diff] [blame] | 816 | b = 0; |
| 817 | c++; |
| 818 | } |
| 819 | } |
| 820 | cn++; |
Marc Kupietz | 1f36dfa | 2019-01-03 16:18:12 +0100 | [diff] [blame] | 821 | for (a = 0; a < cn; a++) { |
| 822 | if (search_backw) { |
Marc Kupietz | 3082fd0 | 2019-01-09 14:54:06 +0100 | [diff] [blame] | 823 | for (b = words - 1; b >= (merge_words? merge_words : 0) && strcmp(&vocab[b * max_w], st[a]) !=0; b--); |
Marc Kupietz | 1f36dfa | 2019-01-03 16:18:12 +0100 | [diff] [blame] | 824 | } else { |
Marc Kupietz | 3082fd0 | 2019-01-09 14:54:06 +0100 | [diff] [blame] | 825 | for (b = 0; b < (merge_words? merge_words : words) && strcmp(&vocab[b * max_w], st[a]) != 0; b++); |
Marc Kupietz | 1f36dfa | 2019-01-03 16:18:12 +0100 | [diff] [blame] | 826 | } |
| 827 | if (b == words) b = -1; |
| 828 | wl->wordi[a] = b; |
Marc Kupietz | 1f36dfa | 2019-01-03 16:18:12 +0100 | [diff] [blame] | 829 | if (b == -1) { |
| 830 | fprintf(stderr, "Out of dictionary word!\n"); |
| 831 | cn--; |
Marc Kupietz | 3082fd0 | 2019-01-09 14:54:06 +0100 | [diff] [blame] | 832 | } else { |
| 833 | fprintf(stderr, "Word: \"%s\" Position in vocabulary: %lld\n", &vocab[wl->wordi[a]*max_w], wl->wordi[a]); |
Marc Kupietz | 1f36dfa | 2019-01-03 16:18:12 +0100 | [diff] [blame] | 834 | } |
| 835 | } |
Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 836 | wl->length=cn; |
| 837 | return(wl); |
| 838 | } |
Marc Kupietz | 1f36dfa | 2019-01-03 16:18:12 +0100 | [diff] [blame] | 839 | |
Marc Kupietz | d7760b4 | 2019-02-21 09:01:44 +0100 | [diff] [blame] | 840 | char *getBiggestMergedDifferences() { |
| 841 | static char *result = NULL; |
Marc Kupietz | ebc131e | 2019-01-03 16:24:27 +0100 | [diff] [blame] | 842 | float dist, len, vec[max_size]; |
| 843 | long long a, b, c, d, cn, *bi; |
| 844 | char ch; |
| 845 | knn *nbs = NULL; |
Marc Kupietz | d7760b4 | 2019-02-21 09:01:44 +0100 | [diff] [blame] | 846 | int N = 1000; |
| 847 | |
| 848 | if(result != NULL) |
| 849 | return result; |
Marc Kupietz | ebc131e | 2019-01-03 16:24:27 +0100 | [diff] [blame] | 850 | |
| 851 | printf("Looking for biggest distances between main and merged vectors ...\n"); |
| 852 | collocator *best; |
| 853 | best = malloc(N * sizeof(collocator)); |
| 854 | memset(best, 0, N * sizeof(collocator)); |
| 855 | |
| 856 | float worstbest=1000000; |
| 857 | |
| 858 | for (a = 0; a < N; a++) best[a].activation = worstbest; |
| 859 | |
Marc Kupietz | 2da2a81 | 2019-02-21 14:17:35 +0100 | [diff] [blame] | 860 | for (c = 0; c < 500000; c++) { |
Marc Kupietz | ebc131e | 2019-01-03 16:24:27 +0100 | [diff] [blame] | 861 | if(garbage && garbage[c]) continue; |
| 862 | a = 0; |
| 863 | dist = 0; |
| 864 | for (a = 0; a < size; a++) dist += M[a + c * size] * M[a + (c+merged_end) * size]; |
| 865 | if(dist < worstbest) { |
| 866 | for (a = 0; a < N; a++) { |
| 867 | if (dist < best[a].activation) { |
| 868 | memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator)); |
| 869 | best[a].activation = dist; |
| 870 | best[a].wordi = c; |
| 871 | break; |
| 872 | } |
| 873 | } |
| 874 | worstbest = best[N-1].activation; |
| 875 | } |
| 876 | } |
| 877 | |
Marc Kupietz | d7760b4 | 2019-02-21 09:01:44 +0100 | [diff] [blame] | 878 | result = malloc(N*max_w); |
| 879 | char *p = result; |
| 880 | *p++ = '['; *p = 0; |
Marc Kupietz | ebc131e | 2019-01-03 16:24:27 +0100 | [diff] [blame] | 881 | for (a = 0; a < N; a++) { |
Marc Kupietz | d7760b4 | 2019-02-21 09:01:44 +0100 | [diff] [blame] | 882 | p += sprintf(p, "{\"rank\":%d,\"word\":\"%s\",\"dist\":%.3f},", a, &vocab[best[a].wordi * max_w], 1-best[a].activation); |
Marc Kupietz | ebc131e | 2019-01-03 16:24:27 +0100 | [diff] [blame] | 883 | } |
Marc Kupietz | d7760b4 | 2019-02-21 09:01:44 +0100 | [diff] [blame] | 884 | *--p = ']'; |
| 885 | return(result); |
Marc Kupietz | ebc131e | 2019-01-03 16:24:27 +0100 | [diff] [blame] | 886 | } |
| 887 | |
Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 888 | void *_get_neighbours(void *arg) { |
| 889 | knnpars *pars = arg; |
Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 890 | char *st1 = pars->token; |
| 891 | int N = pars->N; |
| 892 | long from = pars -> from; |
| 893 | unsigned long upto = pars -> upto; |
| 894 | char file_name[max_size], st[100][max_size], *sep; |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 895 | float dist, len, vec[max_size]; |
| 896 | long long a, b, c, d, cn, *bi; |
Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 897 | char ch; |
| 898 | knn *nbs = NULL; |
| 899 | wordlist *wl = pars->wl; |
| 900 | |
Marc Kupietz | c55c887 | 2017-12-01 23:27:10 +0100 | [diff] [blame] | 901 | collocator *best = pars->best; |
Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 902 | |
| 903 | float worstbest=-1; |
| 904 | |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 905 | for (a = 0; a < N; a++) best[a].activation = 0; |
Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 906 | a = 0; |
| 907 | bi = wl->wordi; |
| 908 | cn = wl->length; |
| 909 | sep = wl->sep; |
| 910 | b = bi[0]; |
| 911 | c = 0; |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 912 | if (b == -1) { |
Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 913 | N = 0; |
| 914 | goto end; |
| 915 | } |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 916 | for (a = 0; a < size; a++) vec[a] = 0; |
| 917 | for (b = 0; b < cn; b++) { |
| 918 | if (bi[b] == -1) continue; |
Marc Kupietz | 95aa1c0 | 2016-03-15 09:40:43 +0100 | [diff] [blame] | 919 | if(b>0 && sep[b-1] == '-') |
| 920 | for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size]; |
| 921 | else |
| 922 | for (a = 0; a < size; a++) vec[a] += M[a + bi[b] * size]; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 923 | } |
| 924 | len = 0; |
| 925 | for (a = 0; a < size; a++) len += vec[a] * vec[a]; |
| 926 | len = sqrt(len); |
| 927 | for (a = 0; a < size; a++) vec[a] /= len; |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 928 | for (a = 0; a < N; a++) best[a].activation = -1; |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 929 | for (c = from; c < upto; c++) { |
Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 930 | if(garbage && garbage[c]) continue; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 931 | a = 0; |
Marc Kupietz | 34020dc | 2016-02-25 08:44:19 +0100 | [diff] [blame] | 932 | // do not skip taget word |
Marc Kupietz | e8da306 | 2016-02-25 08:37:53 +0100 | [diff] [blame] | 933 | // for (b = 0; b < cn; b++) if (bi[b] == c) a = 1; |
| 934 | // if (a == 1) continue; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 935 | dist = 0; |
| 936 | for (a = 0; a < size; a++) dist += vec[a] * M[a + c * size]; |
Marc Kupietz | be1b9fc | 2016-02-26 10:34:30 +0100 | [diff] [blame] | 937 | if(dist > worstbest) { |
| 938 | for (a = 0; a < N; a++) { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 939 | if (dist > best[a].activation) { |
| 940 | memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator)); |
| 941 | best[a].activation = dist; |
| 942 | best[a].wordi = c; |
Marc Kupietz | be1b9fc | 2016-02-26 10:34:30 +0100 | [diff] [blame] | 943 | break; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 944 | } |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 945 | } |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 946 | worstbest = best[N-1].activation; |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 947 | } |
| 948 | } |
Marc Kupietz | 34020dc | 2016-02-25 08:44:19 +0100 | [diff] [blame] | 949 | |
Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 950 | end: |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 951 | pthread_exit(nbs); |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 952 | } |
| 953 | |
Marc Kupietz | e0e4213 | 2017-11-24 16:44:34 +0100 | [diff] [blame] | 954 | int cmp_activation (const void * a, const void * b) { |
| 955 | float fb = ((collocator *)a)->activation; |
| 956 | float fa = ((collocator *)b)->activation; |
| 957 | return (fa > fb) - (fa < fb); |
| 958 | } |
| 959 | |
| 960 | int cmp_probability (const void * a, const void * b) { |
| 961 | float fb = ((collocator *)a)->probability; |
| 962 | float fa = ((collocator *)b)->probability; |
| 963 | return (fa > fb) - (fa < fb); |
| 964 | } |
| 965 | |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 966 | |
Marc Kupietz | ac707b3 | 2018-12-20 11:36:38 +0100 | [diff] [blame] | 967 | SV *get_neighbours(char *st1, int N, int sort_by, int search_backw, long cutoff, int dedupe, int no_similar_profiles) { |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 968 | HV *result = newHV(); |
Marc Kupietz | 7631e02 | 2019-01-25 12:04:42 +0100 | [diff] [blame] | 969 | float *target_sums=NULL, vec[max_size]; |
Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 970 | long long old_words; |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 971 | long a, b, c, d, slice; |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 972 | knn *para_nbs[MAX_THREADS]; |
| 973 | knn *syn_nbs[MAX_THREADS]; |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 974 | knnpars pars[MAX_THREADS]; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 975 | pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t)); |
Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 976 | wordlist *wl; |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 977 | int syn_threads = (M2? window * 2 : 0); |
Marc Kupietz | ac707b3 | 2018-12-20 11:36:38 +0100 | [diff] [blame] | 978 | int para_threads = (no_similar_profiles? 0 : num_threads - syn_threads); |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 979 | |
Marc Kupietz | 7631e02 | 2019-01-25 12:04:42 +0100 | [diff] [blame] | 980 | collocator *best = NULL; |
| 981 | posix_memalign((void **) &best, 128, 10 * (N>=200? N : 200) * sizeof(collocator)); |
| 982 | memset(best, 0, (N>=200? N : 200) * sizeof(collocator)); |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 983 | |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 984 | if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS; |
| 985 | |
Marc Kupietz | d5d0573 | 2018-01-30 11:57:35 +0100 | [diff] [blame] | 986 | if(cutoff < 1 || cutoff > words) |
Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 987 | cutoff=words; |
| 988 | |
Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 989 | wl = getTargetWords(st1, search_backw); |
Marc Kupietz | f9ac54e | 2017-11-21 09:22:29 +0100 | [diff] [blame] | 990 | if(wl == NULL || wl->length < 1) |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 991 | goto end; |
Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 992 | |
Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 993 | old_words = cutoff; |
Marc Kupietz | 3082fd0 | 2019-01-09 14:54:06 +0100 | [diff] [blame] | 994 | slice = cutoff / para_threads; |
Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 995 | |
Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 996 | a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float)); |
Marc Kupietz | 7631e02 | 2019-01-25 12:04:42 +0100 | [diff] [blame] | 997 | memset(target_sums, 0, cutoff * sizeof(float)); |
Marc Kupietz | ce3d4c6 | 2016-03-23 16:11:25 +0100 | [diff] [blame] | 998 | |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 999 | printf("Starting %d threads\n", para_threads); |
| 1000 | fflush(stdout); |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1001 | for(a=0; a < para_threads; a++) { |
Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 1002 | pars[a].cutoff = cutoff; |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 1003 | pars[a].token = st1; |
Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 1004 | pars[a].wl = wl; |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 1005 | pars[a].N = N; |
Marc Kupietz | c55c887 | 2017-12-01 23:27:10 +0100 | [diff] [blame] | 1006 | pars[a].best = &best[N*a]; |
Marc Kupietz | 3082fd0 | 2019-01-09 14:54:06 +0100 | [diff] [blame] | 1007 | if(merge_words == 0 || search_backw == 0) { |
Marc Kupietz | 1f0f780 | 2019-01-03 16:23:29 +0100 | [diff] [blame] | 1008 | pars[a].from = a*slice; |
| 1009 | pars[a].upto = ((a+1)*slice > cutoff? cutoff : (a+1) * slice); |
| 1010 | } else { |
Marc Kupietz | 3082fd0 | 2019-01-09 14:54:06 +0100 | [diff] [blame] | 1011 | pars[a].from = merge_words + a * slice; |
| 1012 | pars[a].upto = merge_words + ((a+1)*slice > cutoff? cutoff : (a+1) * slice); |
Marc Kupietz | 1f0f780 | 2019-01-03 16:23:29 +0100 | [diff] [blame] | 1013 | } |
| 1014 | printf("From: %ld, Upto: %ld\n", pars[a].from, pars[a].upto); |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 1015 | pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]); |
| 1016 | } |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1017 | if(M2) { |
| 1018 | for(a=0; a < syn_threads; a++) { |
Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 1019 | pars[a + para_threads].cutoff = cutoff; |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1020 | pars[a + para_threads].target_sums = target_sums; |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 1021 | pars[a + para_threads].window_sums = window_sums; |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1022 | pars[a + para_threads].wl = wl; |
| 1023 | pars[a + para_threads].N = N; |
| 1024 | pars[a + para_threads].from = a; |
| 1025 | pars[a + para_threads].upto = a+1; |
| 1026 | pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]); |
| 1027 | } |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1028 | } |
| 1029 | printf("Waiting for para threads to join\n"); |
| 1030 | fflush(stdout); |
Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 1031 | for (a = 0; a < para_threads; a++) pthread_join(pt[a], (void *) ¶_nbs[a]); |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1032 | printf("Para threads joint\n"); |
| 1033 | fflush(stdout); |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 1034 | |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1035 | /* if(!syn_nbs[0]) */ |
| 1036 | /* goto end; */ |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 1037 | |
Marc Kupietz | c55c887 | 2017-12-01 23:27:10 +0100 | [diff] [blame] | 1038 | qsort(best, N*para_threads, sizeof(collocator), cmp_activation); |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 1039 | |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 1040 | |
Marc Kupietz | d0d3e91 | 2017-12-01 22:09:43 +0100 | [diff] [blame] | 1041 | long long chosen[MAX_NEIGHBOURS]; |
| 1042 | printf("N: %ld\n", N); |
| 1043 | |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1044 | AV* array = newAV(); |
Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 1045 | int i, j; |
Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 1046 | int l1_words=0, l2_words=0; |
Marc Kupietz | d0d3e91 | 2017-12-01 22:09:43 +0100 | [diff] [blame] | 1047 | |
| 1048 | for (a = 0, i = 0; i < N && a < N*para_threads; a++) { |
Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 1049 | int filtered=0; |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1050 | long long c = best[a].wordi; |
Marc Kupietz | e8b9dd2 | 2019-01-03 17:55:59 +0100 | [diff] [blame] | 1051 | if ((merge_words && dedupe && i > 1) || (!merge_words && dedupe && i > 0)) { |
Marc Kupietz | d0d3e91 | 2017-12-01 22:09:43 +0100 | [diff] [blame] | 1052 | for (j=0; j<i && !filtered; j++) |
| 1053 | if (strcasestr(&vocab[c * max_w], &vocab[chosen[j] * max_w]) || |
| 1054 | strcasestr(&vocab[chosen[j] * max_w], &vocab[c * max_w])) { |
| 1055 | printf("filtering %s %s\n", &vocab[chosen[j] * max_w], &vocab[c * max_w]); |
Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 1056 | filtered = 1; |
| 1057 | } |
| 1058 | if(filtered) |
| 1059 | continue; |
| 1060 | } |
Marc Kupietz | 3082fd0 | 2019-01-09 14:54:06 +0100 | [diff] [blame] | 1061 | |
| 1062 | |
| 1063 | if(0 && merge_words > 0) { |
Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 1064 | if(c >= merge_words) { |
| 1065 | if(l1_words > N / 2) |
| 1066 | continue; |
| 1067 | else |
| 1068 | l1_words++; |
| 1069 | } else { |
| 1070 | if(l2_words > N / 2) |
| 1071 | continue; |
| 1072 | else |
| 1073 | l2_words++; |
| 1074 | } |
| 1075 | } |
Marc Kupietz | 3082fd0 | 2019-01-09 14:54:06 +0100 | [diff] [blame] | 1076 | |
| 1077 | // printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a); |
| 1078 | // fflush(stdout); |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1079 | HV* hash = newHV(); |
Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 1080 | SV* word = newSVpvf(&vocab[c * max_w], 0); |
Marc Kupietz | d0d3e91 | 2017-12-01 22:09:43 +0100 | [diff] [blame] | 1081 | chosen[i] = c; |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1082 | if(latin_enc == 0) SvUTF8_on(word); |
Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 1083 | fflush(stdout); |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1084 | hv_store(hash, "word", strlen("word"), word , 0); |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1085 | hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0); |
| 1086 | hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0); |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1087 | AV *vector = newAV(); |
| 1088 | for (b = 0; b < size; b++) { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1089 | av_push(vector, newSVnv(M[b + best[a].wordi * size])); |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 1090 | } |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1091 | hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0); |
| 1092 | av_push(array, newRV_noinc((SV*)hash)); |
Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 1093 | i++; |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1094 | } |
| 1095 | hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0); |
Marc Kupietz | 7631e02 | 2019-01-25 12:04:42 +0100 | [diff] [blame] | 1096 | |
Marc Kupietz | 50485ba | 2016-03-23 09:13:14 +0100 | [diff] [blame] | 1097 | for(b=0; b < MAX_NEIGHBOURS; b++) { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1098 | best[b].wordi = -1L; |
| 1099 | best[b].activation = 0; |
| 1100 | best[b].probability = 0; |
| 1101 | best[b].position = 0; |
| 1102 | best[b].activation_sum = 0; |
Marc Kupietz | 7631e02 | 2019-01-25 12:04:42 +0100 | [diff] [blame] | 1103 | memset(best[b].heat, 0, sizeof(float)*16); |
Marc Kupietz | 50485ba | 2016-03-23 09:13:14 +0100 | [diff] [blame] | 1104 | } |
| 1105 | |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1106 | float total_activation = 0; |
| 1107 | |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1108 | if (M2) { |
| 1109 | printf("Waiting for syn threads to join\n"); |
| 1110 | fflush(stdout); |
Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 1111 | for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], (void *) &syn_nbs[a]); |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1112 | for (a = 0; a <= syn_threads; a++) { |
Marc Kupietz | 6387218 | 2018-03-12 09:44:49 +0100 | [diff] [blame] | 1113 | if(a == window) continue; |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1114 | total_activation += window_sums[a]; |
| 1115 | printf("window pos: %d, sum: %f\n", a, window_sums[a]); |
| 1116 | } |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1117 | printf("syn threads joint\n"); |
| 1118 | fflush(stdout); |
Marc Kupietz | 50485ba | 2016-03-23 09:13:14 +0100 | [diff] [blame] | 1119 | |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1120 | for(b=0; b < syn_nbs[0]->length; b++) { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1121 | memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator)); |
| 1122 | best[b].position = -1; // syn_nbs[0]->pos[b]; |
| 1123 | best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi]; |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 1124 | best[b].max_activation = 0.0; |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1125 | best[b].average = 0.0; |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 1126 | best[b].probability = 0.0; |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1127 | best[b].cprobability = syn_nbs[0]->best[b].cprobability; |
Marc Kupietz | 7631e02 | 2019-01-25 12:04:42 +0100 | [diff] [blame] | 1128 | memset(best[b].heat, 0, sizeof(float)*16); |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1129 | } |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1130 | |
| 1131 | float best_window_sum[MAX_NEIGHBOURS]; |
| 1132 | int found_index=0, i=0, j, w; |
Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 1133 | for(a=0; a < syn_threads; a++) { |
| 1134 | for(b=0; b < syn_nbs[a]->length; b++) { |
| 1135 | for(i=0; i < found_index; i++) |
| 1136 | if(best[i].wordi == syn_nbs[a]->best[b].wordi) |
| 1137 | break; |
| 1138 | if(i >= found_index) { |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 1139 | best[found_index].max_activation = 0.0; |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1140 | best[found_index].average = 0.0; |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 1141 | best[found_index].probability = 0.0; |
Marc Kupietz | 7631e02 | 2019-01-25 12:04:42 +0100 | [diff] [blame] | 1142 | memset(best[found_index].heat, 0, sizeof(float)*16); |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1143 | best[found_index].cprobability = syn_nbs[a]->best[b].cprobability; |
| 1144 | best[found_index].activation_sum = target_sums[syn_nbs[a]->best[b].wordi]; // syn_nbs[a]->best[b].activation_sum; |
Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 1145 | best[found_index++].wordi = syn_nbs[a]->best[b].wordi; |
| 1146 | // printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]); |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1147 | } |
| 1148 | } |
Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 1149 | } |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1150 | sort_by =0; // ALWAYS AUTO-FOCUS |
Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 1151 | if(sort_by != 1 && sort_by != 2) { // sort by auto focus mean |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1152 | printf("window: %d - syn_threads: %d, %d\n", window, syn_threads, (1 << syn_threads) -1); |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 1153 | int wpos; |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1154 | int bits_set = 0; |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1155 | for(i=0; i < found_index; i++) { |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1156 | best[i].activation = best[i].probability = best[i].average = best[i].cprobability_sum = 0; |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1157 | for(w=1; w < (1 << syn_threads); w++) { // loop through all possible windows |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1158 | float word_window_sum = 0, word_window_average=0, word_cprobability_sum=0, word_activation_sum = 0, total_window_sum = 0; |
| 1159 | bits_set = 0; |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 1160 | for(a=0; a < syn_threads; a++) { |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1161 | if((1 << a) & w) { |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 1162 | wpos = (a >= window? a+1 : a); |
| 1163 | total_window_sum += window_sums[wpos]; |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1164 | } |
| 1165 | } |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 1166 | // printf("%d window-sum %f\n", w, total_window_sum); |
| 1167 | for(a=0; a < syn_threads; a++) { |
| 1168 | if((1 << a) & w) { |
| 1169 | wpos = (a >= window? a+1 : a); |
| 1170 | bits_set++; |
| 1171 | for(b=0; b < syn_nbs[a]->length; b++) |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1172 | if(best[i].wordi == syn_nbs[a]->best[b].wordi) { |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1173 | // float acti = syn_nbs[a]->best[b].activation / total_window_sum; |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 1174 | // word_window_sum += syn_nbs[a]->dist[b] * syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b]; |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 1175 | // word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos]; // syn_nbs[a]->norm[b]; |
| 1176 | // word_window_sum = (word_window_sum + syn_nbs[a]->norm[b]) - (word_window_sum * syn_nbs[a]->norm[b]); // syn_nbs[a]->norm[b]; |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1177 | |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 1178 | word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b]; |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1179 | // word_window_sum += acti - (word_window_sum * acti); syn_nbs[a]->best[b].activation; // / window_sums[wpos]; // syn_nbs[a]->norm[b]; |
| 1180 | |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1181 | word_window_average += syn_nbs[a]->best[b].activation; // - word_window_average * syn_nbs[a]->best[b].activation; // conormalied activation sum |
| 1182 | word_cprobability_sum += syn_nbs[a]->best[b].cprobability - word_cprobability_sum * syn_nbs[a]->best[b].cprobability; // conormalied column probability sum |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 1183 | word_activation_sum += syn_nbs[a]->best[b].activation; |
| 1184 | if(syn_nbs[a]->best[b].activation > best[i].max_activation) |
| 1185 | best[i].max_activation = syn_nbs[a]->best[b].activation; |
Marc Kupietz | db2dc7e | 2017-12-02 12:04:03 +0100 | [diff] [blame] | 1186 | if(syn_nbs[a]->best[b].activation > best[i].heat[wpos] ) |
Marc Kupietz | 728b8ed | 2017-12-02 11:13:49 +0100 | [diff] [blame] | 1187 | best[i].heat[wpos] = syn_nbs[a]->best[b].activation; |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 1188 | } |
| 1189 | } |
| 1190 | } |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1191 | if(bits_set) { |
| 1192 | word_window_average /= bits_set; |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 1193 | // word_activation_sum /= bits_set; |
| 1194 | // word_window_sum /= bits_set; |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1195 | } |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1196 | |
| 1197 | word_window_sum /= total_window_sum; |
Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 1198 | |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1199 | if(word_window_sum > best[i].probability) { |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1200 | // best[i].position = w; |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1201 | best[i].probability = word_window_sum; |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1202 | } |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 1203 | |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1204 | if(word_cprobability_sum > best[i].cprobability_sum) { |
| 1205 | best[i].position = w; |
| 1206 | best[i].cprobability_sum = word_cprobability_sum; |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 1207 | } |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1208 | |
| 1209 | best[i].average = word_window_average; |
| 1210 | // best[i].activation = word_activation_sum; |
| 1211 | } |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1212 | } |
Marc Kupietz | e0e4213 | 2017-11-24 16:44:34 +0100 | [diff] [blame] | 1213 | qsort(best, found_index, sizeof(collocator), cmp_probability); |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1214 | // for(i=0; i < found_index; i++) { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1215 | // printf("found: %s - sum: %f - window: %d\n", &vocab[best[i].wordi * max_w], best[i].activation, best[i].position); |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1216 | // } |
| 1217 | |
Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 1218 | } else if(sort_by == 1) { // responsiveness any window position |
| 1219 | int wpos; |
| 1220 | for(i=0; i < found_index; i++) { |
| 1221 | float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0; |
| 1222 | for(a=0; a < syn_threads; a++) { |
| 1223 | wpos = (a >= window? a+1 : a); |
| 1224 | for(b=0; b < syn_nbs[a]->length; b++) |
| 1225 | if(best[i].wordi == syn_nbs[a]->best[b].wordi) { |
| 1226 | best[i].probability += syn_nbs[a]->best[b].probability; |
| 1227 | if(syn_nbs[a]->best[b].activation > 0.25) |
| 1228 | best[i].position |= 1 << wpos; |
| 1229 | if(syn_nbs[a]->best[b].activation > best[i].activation) { |
| 1230 | best[i].activation = syn_nbs[a]->best[b].activation; |
| 1231 | } |
| 1232 | } |
| 1233 | } |
| 1234 | } |
| 1235 | qsort(best, found_index, sizeof(collocator), cmp_activation); |
| 1236 | } else if(sort_by == 2) { // single window position |
Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 1237 | for(a=1; a < syn_threads; a++) { |
| 1238 | for(b=0; b < syn_nbs[a]->length; b++) { |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1239 | for(c=0; c < MAX_NEIGHBOURS; c++) { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1240 | if(syn_nbs[a]->best[b].activation > best[c].activation) { |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1241 | for(d=MAX_NEIGHBOURS-1; d>c; d--) { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1242 | memmove(best + d, best + d - 1, sizeof(collocator)); |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1243 | } |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1244 | memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator)); |
| 1245 | best[c].position = 1 << (-syn_nbs[a]->best[b].position+window - (syn_nbs[a]->best[b].position < 0 ? 1:0)); |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1246 | break; |
Marc Kupietz | 6d9a678 | 2016-03-23 17:25:25 +0100 | [diff] [blame] | 1247 | } |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1248 | } |
| 1249 | } |
| 1250 | } |
| 1251 | } else { // sort by mean p |
| 1252 | for(a=1; a < syn_threads; a++) { |
| 1253 | for(b=0; b < syn_nbs[a]->length; b++) { |
| 1254 | for(c=0; c < MAX_NEIGHBOURS; c++) { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1255 | if(target_sums[syn_nbs[a]->best[b].wordi] > best[c].activation_sum) { |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1256 | for(d=MAX_NEIGHBOURS-1; d>c; d--) { |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1257 | memmove(best + d, best + d - 1, sizeof(collocator)); |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1258 | } |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1259 | memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator)); |
| 1260 | best[c].position = (1 << 2*window) - 1; // syn_nbs[a]->pos[b]; |
| 1261 | best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi]; |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1262 | break; |
| 1263 | } |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1264 | } |
Marc Kupietz | 6d9a678 | 2016-03-23 17:25:25 +0100 | [diff] [blame] | 1265 | } |
| 1266 | } |
| 1267 | } |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1268 | array = newAV(); |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1269 | for (a = 0, i=0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) { |
| 1270 | long long c = best[a].wordi; |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1271 | /* |
Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 1272 | if (dedupe) { |
| 1273 | int filtered=0; |
| 1274 | for (j=0; j<i; j++) |
| 1275 | if (strcasestr(&vocab[c * max_w], chosen[j]) || |
| 1276 | strcasestr(chosen[j], &vocab[c * max_w])) { |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1277 | printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]); |
| 1278 | filtered = 1; |
| 1279 | } |
Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 1280 | if(filtered) |
| 1281 | continue; |
| 1282 | } |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1283 | */ |
Marc Kupietz | b6c615d | 2017-12-02 10:38:20 +0100 | [diff] [blame] | 1284 | chosen[i++]=c; |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1285 | HV* hash = newHV(); |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1286 | SV* word = newSVpvf(&vocab[best[a].wordi * max_w], 0); |
Marc Kupietz | b6c615d | 2017-12-02 10:38:20 +0100 | [diff] [blame] | 1287 | AV* heat = newAV(); |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1288 | if(latin_enc == 0) SvUTF8_on(word); |
| 1289 | hv_store(hash, "word", strlen("word"), word , 0); |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1290 | hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0); |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1291 | hv_store(hash, "average", strlen("average"), newSVnv(best[a].average), 0); |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 1292 | hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0); |
Marc Kupietz | 4116b43 | 2017-12-06 14:15:32 +0100 | [diff] [blame] | 1293 | hv_store(hash, "cprob", strlen("cprob"), newSVnv(best[a].cprobability_sum), 0); |
Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame] | 1294 | hv_store(hash, "max", strlen("max"), newSVnv(best[a].max_activation), 0); // newSVnv(target_sums[best[a].wordi]), 0); |
Marc Kupietz | a77acce | 2017-11-30 16:59:07 +0100 | [diff] [blame] | 1295 | hv_store(hash, "overall", strlen("overall"), newSVnv(best[a].activation_sum/total_activation), 0); // newSVnv(target_sums[best[a].wordi]), 0); |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1296 | hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0); |
Marc Kupietz | b6c615d | 2017-12-02 10:38:20 +0100 | [diff] [blame] | 1297 | best[a].heat[5]=0; |
| 1298 | for(i=10; i >= 0; i--) av_push(heat, newSVnv(best[a].heat[i])); |
| 1299 | hv_store(hash, "heat", strlen("heat"), newRV_noinc((SV*)heat), 0); |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1300 | av_push(array, newRV_noinc((SV*)hash)); |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1301 | } |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1302 | hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0); |
Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 1303 | } |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 1304 | end: |
Marc Kupietz | 257a93d | 2019-01-03 17:55:22 +0100 | [diff] [blame] | 1305 | // words = old_words; // why was this here? |
Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 1306 | free(best); |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 1307 | return newRV_noinc((SV*)result); |
Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 1308 | } |
Marc Kupietz | 7bc85fd | 2016-02-24 11:42:41 +0100 | [diff] [blame] | 1309 | |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1310 | int dump_vecs(char *fname) { |
| 1311 | long i, j; |
| 1312 | FILE *f; |
Marc Kupietz | 0a68a79 | 2018-12-20 11:41:45 +0100 | [diff] [blame] | 1313 | if(words>100000) |
| 1314 | words=100000; |
Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 1315 | |
Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 1316 | if((f=fopen(fname, "w")) == NULL) { |
| 1317 | fprintf(stderr, "cannot open %s for writing\n", fname); |
| 1318 | return(-1); |
| 1319 | } |
| 1320 | fprintf(f, "%lld %lld\n", words, size); |
| 1321 | for (i=0; i < words; i++) { |
| 1322 | fprintf(f, "%s ", &vocab[i * max_w]); |
| 1323 | for(j=0; j < size - 1; j++) |
| 1324 | fprintf(f, "%f ", M[i*size + j]); |
| 1325 | fprintf(f, "%f\n", M[i*size + j]); |
| 1326 | } |
| 1327 | fclose(f); |
| 1328 | return(0); |
| 1329 | } |
Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 1330 | |
Marc Kupietz | fa19426 | 2018-06-05 09:39:32 +0200 | [diff] [blame] | 1331 | int dump_for_numpy(char *fname) { |
| 1332 | long i, j; |
| 1333 | FILE *f; |
Marc Kupietz | 1233eda | 2019-03-06 14:16:43 +0100 | [diff] [blame^] | 1334 | int max; |
| 1335 | if(merged_end > 0) |
| 1336 | max = 150000; |
| 1337 | else |
| 1338 | max = 300000; |
| 1339 | |
| 1340 | if(words>300000) |
| 1341 | words=300000; |
Marc Kupietz | fa19426 | 2018-06-05 09:39:32 +0200 | [diff] [blame] | 1342 | |
| 1343 | if((f=fopen(fname, "w")) == NULL) { |
| 1344 | fprintf(stderr, "cannot open %s for writing\n", fname); |
| 1345 | return(-1); |
| 1346 | } |
Marc Kupietz | 1233eda | 2019-03-06 14:16:43 +0100 | [diff] [blame^] | 1347 | for (i=0; i < max; i++) { |
Marc Kupietz | fa19426 | 2018-06-05 09:39:32 +0200 | [diff] [blame] | 1348 | for(j=0; j < size - 1; j++) |
| 1349 | fprintf(f, "%f\t", M[i*size + j]); |
| 1350 | fprintf(f, "%f\n", M[i*size + j]); |
Marc Kupietz | 1233eda | 2019-03-06 14:16:43 +0100 | [diff] [blame^] | 1351 | printf("%s\n", &vocab[i * max_w]); |
| 1352 | |
| 1353 | if(merged_end > 0) { |
| 1354 | for(j=0; j < size - 1; j++) |
| 1355 | fprintf(f, "%f\t", M[(merged_end + i)*size + j]); |
| 1356 | fprintf(f, "%f\n", M[(merged_end + i)*size + j]); |
| 1357 | printf("_%s\n", &vocab[i * max_w]); |
| 1358 | } |
Marc Kupietz | fa19426 | 2018-06-05 09:39:32 +0200 | [diff] [blame] | 1359 | } |
| 1360 | fclose(f); |
Marc Kupietz | 7631e02 | 2019-01-25 12:04:42 +0100 | [diff] [blame] | 1361 | return(0); |
Marc Kupietz | fa19426 | 2018-06-05 09:39:32 +0200 | [diff] [blame] | 1362 | } |