| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 1 | #!/usr/local/bin/perl | 
|  | 2 | use Inline C; | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 3 | use Inline C => Config => CLEAN_AFTER_BUILD => 0, ccflags => $Config{ccflags}." -O4"; | 
| 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; | 
|  | 14 | app->static->paths->[0] = getcwd; | 
|  | 15 |  | 
| Marc Kupietz | d422739 | 2016-03-01 16:45:12 +0100 | [diff] [blame] | 16 | plugin 'Log::Access'; | 
| Marc Kupietz | b3422c1 | 2017-07-04 14:12:11 +0200 | [diff] [blame] | 17 | plugin "RequestBase"; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 18 |  | 
| Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 19 | our $opt_i = 0; # latin1-input? | 
|  | 20 | our $opt_l = undef; | 
|  | 21 | our $opt_p = 5676; | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 22 | our $opt_m; | 
| Marc Kupietz | 6ed8187 | 2016-04-27 14:04:04 +0200 | [diff] [blame] | 23 | our $opt_M; | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 24 | our $opt_n = ''; | 
|  | 25 | our $opt_d; | 
| Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 26 | our $opt_G; | 
| Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 27 |  | 
| Marc Kupietz | 6ed8187 | 2016-04-27 14:04:04 +0200 | [diff] [blame] | 28 | my %marked; | 
| Marc Kupietz | 793413b | 2016-04-02 21:48:57 +0200 | [diff] [blame] | 29 | my $training_args=""; | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 30 | my $mergedEnd=0; | 
| Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 31 | my %cache; | 
| Marc Kupietz | 793413b | 2016-04-02 21:48:57 +0200 | [diff] [blame] | 32 |  | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 33 | getopts('d:Gil:p:m:n:M:'); | 
| Marc Kupietz | 6ed8187 | 2016-04-27 14:04:04 +0200 | [diff] [blame] | 34 |  | 
|  | 35 | if($opt_M) { | 
| Marc Kupietz | ed93021 | 2016-04-27 15:42:38 +0200 | [diff] [blame] | 36 | open my $handle, '<:encoding(UTF-8)', $opt_M | 
|  | 37 | or die "Can't open '$opt_M' for reading: $!"; | 
|  | 38 | while(<$handle>) { | 
| Marc Kupietz | 6ed8187 | 2016-04-27 14:04:04 +0200 | [diff] [blame] | 39 | foreach my $mw (split /\s+/) { | 
|  | 40 | $marked{$mw}=1 | 
|  | 41 | } | 
|  | 42 | } | 
| Marc Kupietz | ed93021 | 2016-04-27 15:42:38 +0200 | [diff] [blame] | 43 | close($handle); | 
| Marc Kupietz | 6ed8187 | 2016-04-27 14:04:04 +0200 | [diff] [blame] | 44 | } | 
| Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 45 |  | 
| Marc Kupietz | 7bc85fd | 2016-02-24 11:42:41 +0100 | [diff] [blame] | 46 | # -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] | 47 | if(!$ARGV[0]) { | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 48 | init_net("vectors15.bin", $opt_n, ($opt_i? 1 : 0)); | 
| Marc Kupietz | 2cb667e | 2016-03-10 09:44:12 +0100 | [diff] [blame] | 49 | } else { | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 50 | init_net($ARGV[0], $opt_n, ($opt_i? 1 : 0)); | 
| Marc Kupietz | 793413b | 2016-04-02 21:48:57 +0200 | [diff] [blame] | 51 | if(open(FILE, "$ARGV[0].args")) { | 
|  | 52 | $training_args = <FILE>; | 
|  | 53 | } | 
|  | 54 | close(FILE); | 
| Marc Kupietz | 2cb667e | 2016-03-10 09:44:12 +0100 | [diff] [blame] | 55 | } | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 56 |  | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 57 | if($opt_m) { | 
|  | 58 | $mergedEnd = mergeVectors($opt_m); | 
|  | 59 | } | 
|  | 60 |  | 
| Marc Kupietz | 6ed8187 | 2016-04-27 14:04:04 +0200 | [diff] [blame] | 61 |  | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 62 | if($opt_d) { # -d: dump  vecs and exit | 
|  | 63 | dump_vecs($opt_d); | 
|  | 64 | exit; | 
|  | 65 | } | 
|  | 66 |  | 
| Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 67 | my $daemon = Mojo::Server::Daemon->new( | 
|  | 68 | app    => app, | 
|  | 69 | listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"] | 
|  | 70 | ); | 
|  | 71 |  | 
| Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 72 | if($opt_G) { | 
|  | 73 | print "Filtering garbage\n"; | 
|  | 74 | filter_garbage(); | 
|  | 75 | } | 
|  | 76 |  | 
| Marc Kupietz | 554aff5 | 2017-11-09 14:42:09 +0100 | [diff] [blame] | 77 | get '*/js/*' => sub { | 
| Marc Kupietz | ffef930 | 2017-11-07 15:58:01 +0100 | [diff] [blame] | 78 | my $c = shift; | 
|  | 79 | my $url = $c->req->url; | 
|  | 80 | $url =~ s@/derekovecs@@g; | 
|  | 81 | $c->app->log->info("GET: " . $url); | 
|  | 82 | $c->reply->static($url); | 
|  | 83 | }; | 
|  | 84 |  | 
| Marc Kupietz | df3d4b5 | 2017-11-29 16:57:27 +0100 | [diff] [blame] | 85 | get '*/img/*' => sub { | 
|  | 86 | my $c = shift; | 
|  | 87 | my $url = $c->req->url; | 
|  | 88 | $url =~ s@/derekovecs@@g; | 
|  | 89 | $c->app->log->info("GET: " . $url); | 
|  | 90 | $c->reply->static($url); | 
|  | 91 | }; | 
|  | 92 |  | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 93 | get '/' => sub { | 
|  | 94 | my $c    = shift; | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 95 | $c->app->log->info("get: ".$c->req->url->to_abs); | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 96 | my $word=$c->param('word'); | 
| Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 97 | my $no_nbs=$c->param('n') || 100; | 
|  | 98 | my $no_iterations=$c->param('N') || 2000; | 
| Marc Kupietz | d422739 | 2016-03-01 16:45:12 +0100 | [diff] [blame] | 99 | my $perplexity=$c->param('perplexity') || 20; | 
| Marc Kupietz | c4d62f8 | 2016-03-01 11:04:24 +0100 | [diff] [blame] | 100 | my $epsilon=$c->param('epsilon') || 5; | 
| Marc Kupietz | d7aea72 | 2016-03-02 11:59:12 +0100 | [diff] [blame] | 101 | my $som=$c->param('som') || 0; | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 102 | my $searchBaseVocabFirst=$c->param('sbf') || 0; | 
| Marc Kupietz | 6d9a678 | 2016-03-23 17:25:25 +0100 | [diff] [blame] | 103 | my $sort=$c->param('sort') || 0; | 
| Marc Kupietz | c469f3b | 2017-11-13 14:07:36 +0100 | [diff] [blame] | 104 | my $csv=$c->param('csv') || 0; | 
| Marc Kupietz | b613b05 | 2016-04-28 14:11:59 +0200 | [diff] [blame] | 105 | my $json=$c->param('json') || 0; | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 106 | my $cutoff=$c->param('cutoff') || 1000000; | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 107 | my $dedupe=$c->param('dedupe') || 0; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 108 | my $res; | 
| Marc Kupietz | 7b2cbeb | 2016-02-25 11:22:00 +0100 | [diff] [blame] | 109 | my @lists; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 110 | my @collocations; | 
| Marc Kupietz | 7bc85fd | 2016-02-24 11:42:41 +0100 | [diff] [blame] | 111 | if(defined($word) && $word !~ /^\s*$/) { | 
|  | 112 | $c->inactivity_timeout(300); | 
| Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 113 | $word =~ s/\s+/ /g; | 
|  | 114 | for my $w (split(' *\| *', $word)) { | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 115 | if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe}) { | 
| Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 116 | $c->app->log->info("Getting $w results from cache"); | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 117 | $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} | 
| Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 118 | } else { | 
| Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 119 | $c->app->log->info('Looking for neighbours of '.$w); | 
|  | 120 | if($opt_i) { | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 121 | $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe); | 
| Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 122 | } else { | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 123 | $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe); | 
| Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 124 | } | 
|  | 125 | $cache{$w} = $res; | 
| Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 126 | } | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 127 | push(@lists, $res->{paradigmatic}); | 
| Marc Kupietz | 1598741 | 2017-11-07 15:56:58 +0100 | [diff] [blame] | 128 | } | 
|  | 129 | } | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 130 | $word =~ s/ *\| */ | /g; | 
| Marc Kupietz | b613b05 | 2016-04-28 14:11:59 +0200 | [diff] [blame] | 131 | if($json) { | 
|  | 132 | return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}}); | 
| Marc Kupietz | c469f3b | 2017-11-13 14:07:36 +0100 | [diff] [blame] | 133 | } elsif($csv) { | 
|  | 134 | my $csv_data=""; | 
|  | 135 | for (my $i=0; $i <= $no_nbs; $i++) { | 
|  | 136 | $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", "; | 
|  | 137 | } | 
|  | 138 | for (my $i=0; $i < $no_nbs; $i++) { | 
|  | 139 | $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", "; | 
|  | 140 | } | 
|  | 141 | chop $csv_data; | 
|  | 142 | chop $csv_data; | 
|  | 143 | $csv_data .= "\n"; | 
|  | 144 | return $c->render(text=>$csv_data); | 
| Marc Kupietz | b613b05 | 2016-04-28 14:11:59 +0200 | [diff] [blame] | 145 | } else { | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 146 | $c->render(template=>"index", word=>$word, 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, dedupe=> $dedupe, marked=>\%marked, lists=> \@lists, collocators=> $res->{syntagmatic}); | 
| Marc Kupietz | b613b05 | 2016-04-28 14:11:59 +0200 | [diff] [blame] | 147 | } | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 148 | }; | 
|  | 149 |  | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 150 | helper(bitvec2window => sub { | 
|  | 151 | my ($self, $n) = @_; | 
|  | 152 | my $str = unpack("B32", pack("N", $n)); | 
|  | 153 | $str =~ s/^\d{22}//; | 
|  | 154 | $str =~ s/^(\d{5})/$1x/; | 
|  | 155 | $str =~ s/0/·/g; | 
|  | 156 | $str =~ s/1/+/g; | 
|  | 157 | return $str; | 
|  | 158 | }); | 
|  | 159 |  | 
| Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 160 | $daemon->run; # app->start; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 161 |  | 
|  | 162 | exit; | 
|  | 163 |  | 
|  | 164 | __END__ | 
|  | 165 |  | 
|  | 166 | __C__ | 
|  | 167 | #include <stdio.h> | 
|  | 168 | #include <string.h> | 
|  | 169 | #include <math.h> | 
|  | 170 | #include <malloc.h> | 
|  | 171 | #include <stdlib.h>    //strlen | 
| Marc Kupietz | f080976 | 2016-02-26 10:13:47 +0100 | [diff] [blame] | 172 | #include <sys/mman.h> | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 173 | #include <pthread.h> | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 174 |  | 
|  | 175 | #define max_size 2000 | 
|  | 176 | #define max_w 50 | 
| Marc Kupietz | 7bc85fd | 2016-02-24 11:42:41 +0100 | [diff] [blame] | 177 | #define MAX_NEIGHBOURS 1000 | 
| Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 178 | #define MAX_WORDS -1 | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 179 | #define MAX_THREADS 100 | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 180 | #define MAX_CC 50 | 
|  | 181 | #define EXP_TABLE_SIZE 1000 | 
|  | 182 | #define MAX_EXP 6 | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 183 | #define MIN_RESP 0.50 | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 184 |  | 
|  | 185 | //the thread function | 
|  | 186 | void *connection_handler(void *); | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 187 |  | 
|  | 188 | typedef struct { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 189 | long long wordi; | 
|  | 190 | long position; | 
|  | 191 | float activation; | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 192 | float probability; | 
| Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame^] | 193 | float activation_sum; | 
|  | 194 | float conorm; | 
|  | 195 | float max_activation; | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 196 | } collocator; | 
|  | 197 |  | 
|  | 198 | typedef struct { | 
|  | 199 | collocator *best; | 
| Marc Kupietz | 80abb44 | 2016-03-23 21:04:08 +0100 | [diff] [blame] | 200 | int length; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 201 | } knn; | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 202 |  | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 203 | typedef struct { | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 204 | long long wordi[MAX_NEIGHBOURS]; | 
|  | 205 | char sep[MAX_NEIGHBOURS]; | 
|  | 206 | int length; | 
|  | 207 | } wordlist; | 
|  | 208 |  | 
|  | 209 | typedef struct { | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 210 | long cutoff; | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 211 | wordlist *wl; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 212 | char *token; | 
|  | 213 | int N; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 214 | long from; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 215 | unsigned long upto; | 
| Marc Kupietz | ce3d4c6 | 2016-03-23 16:11:25 +0100 | [diff] [blame] | 216 | float *target_sums; | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 217 | float *window_sums; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 218 | } knnpars; | 
|  | 219 |  | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 220 | float *M, *M2=0L, *syn1neg_window, *expTable; | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 221 | float *window_sums; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 222 | char *vocab; | 
| Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 223 | char *garbage = NULL; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 224 |  | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 225 | long long words, size, merged_end; | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 226 | long long merge_words = 0; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 227 | int num_threads=20; | 
| Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 228 | int latin_enc=0; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 229 | int window; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 230 |  | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 231 | int init_net(char *file_name, char *net_name, int latin) { | 
| Marc Kupietz | 67c2028 | 2016-02-26 09:42:00 +0100 | [diff] [blame] | 232 | FILE *f, *binvecs, *binwords; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 233 | int binwords_fd, binvecs_fd, net_fd, i; | 
| Marc Kupietz | 82b0267 | 2016-02-26 12:32:25 +0100 | [diff] [blame] | 234 | long long a, b, c, d, cn; | 
|  | 235 | float len; | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 236 | double val; | 
| Marc Kupietz | 82b0267 | 2016-02-26 12:32:25 +0100 | [diff] [blame] | 237 |  | 
| Marc Kupietz | 67c2028 | 2016-02-26 09:42:00 +0100 | [diff] [blame] | 238 | char binvecs_fname[256], binwords_fname[256]; | 
|  | 239 | strcpy(binwords_fname, file_name); | 
|  | 240 | strcat(binwords_fname, ".words"); | 
|  | 241 | strcpy(binvecs_fname, file_name); | 
|  | 242 | strcat(binvecs_fname, ".vecs"); | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 243 |  | 
| Marc Kupietz | a5b9015 | 2016-03-15 17:39:19 +0100 | [diff] [blame] | 244 | latin_enc = latin; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 245 | f = fopen(file_name, "rb"); | 
|  | 246 | if (f == NULL) { | 
|  | 247 | printf("Input file %s not found\n", file_name); | 
|  | 248 | return -1; | 
|  | 249 | } | 
|  | 250 | fscanf(f, "%lld", &words); | 
| Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 251 | if(MAX_WORDS > 0 && words > MAX_WORDS) words = MAX_WORDS; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 252 | fscanf(f, "%lld", &size); | 
| Marc Kupietz | 2cb667e | 2016-03-10 09:44:12 +0100 | [diff] [blame] | 253 | if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) < 0  || (binwords_fd = open(binwords_fname, O_RDONLY)) < 0) { | 
|  | 254 | printf("Converting %s to memory mappable structures\n", file_name); | 
| Marc Kupietz | f080976 | 2016-02-26 10:13:47 +0100 | [diff] [blame] | 255 | vocab = (char *)malloc((long long)words * max_w * sizeof(char)); | 
|  | 256 | M = (float *)malloc((long long)words * (long long)size * sizeof(float)); | 
|  | 257 | if (M == NULL) { | 
|  | 258 | printf("Cannot allocate memory: %lld MB    %lld  %lld\n", (long long)words * size * sizeof(float) / 1048576, words, size); | 
|  | 259 | return -1; | 
|  | 260 | } | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 261 | if(strstr(file_name, ".txt")) { | 
|  | 262 | for (b = 0; b < words; b++) { | 
|  | 263 | a = 0; | 
|  | 264 | while (1) { | 
|  | 265 | vocab[b * max_w + a] = fgetc(f); | 
|  | 266 | if (feof(f) || (vocab[b * max_w + a] == ' ')) break; | 
|  | 267 | if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++; | 
|  | 268 | } | 
|  | 269 | vocab[b * max_w + a] = 0; | 
|  | 270 | len = 0; | 
|  | 271 | for (a = 0; a < size; a++) { | 
|  | 272 | fscanf(f, "%lf", &val); | 
|  | 273 | M[a + b * size] = val; | 
|  | 274 | len += val * val; | 
|  | 275 | } | 
|  | 276 | len = sqrt(len); | 
|  | 277 | for (a = 0; a < size; a++) M[a + b * size] /= len; | 
|  | 278 | } | 
|  | 279 | } else { | 
|  | 280 | for (b = 0; b < words; b++) { | 
|  | 281 | a = 0; | 
|  | 282 | while (1) { | 
|  | 283 | vocab[b * max_w + a] = fgetc(f); | 
|  | 284 | if (feof(f) || (vocab[b * max_w + a] == ' ')) break; | 
|  | 285 | if ((a < max_w) && (vocab[b * max_w + a] != '\n')) a++; | 
|  | 286 | } | 
|  | 287 | vocab[b * max_w + a] = 0; | 
|  | 288 | fread(&M[b * size], sizeof(float), size, f); | 
|  | 289 | len = 0; | 
|  | 290 | for (a = 0; a < size; a++) len += M[a + b * size] * M[a + b * size]; | 
|  | 291 | len = sqrt(len); | 
|  | 292 | for (a = 0; a < size; a++) M[a + b * size] /= len; | 
|  | 293 | } | 
|  | 294 | } | 
| Marc Kupietz | 67c2028 | 2016-02-26 09:42:00 +0100 | [diff] [blame] | 295 | if( (binvecs = fopen(binvecs_fname, "wb")) != NULL && (binwords = fopen(binwords_fname, "wb")) != NULL) { | 
|  | 296 | fwrite(M, sizeof(float), (long long)words * (long long)size, binvecs); | 
|  | 297 | fclose(binvecs); | 
|  | 298 | fwrite(vocab, sizeof(char), (long long)words * max_w, binwords); | 
|  | 299 | fclose(binwords); | 
|  | 300 | } | 
| Marc Kupietz | 2cb667e | 2016-03-10 09:44:12 +0100 | [diff] [blame] | 301 | } | 
|  | 302 | if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) { | 
|  | 303 | M = mmap(0, sizeof(float) * (long long)words * (long long)size, PROT_READ, MAP_SHARED, binvecs_fd, 0); | 
|  | 304 | vocab = mmap(0,  sizeof(char) * (long long)words * max_w, PROT_READ, MAP_SHARED, binwords_fd, 0); | 
|  | 305 | if (M == MAP_FAILED || vocab == MAP_FAILED) { | 
|  | 306 | close(binvecs_fd); | 
|  | 307 | close(binwords_fd); | 
|  | 308 | fprintf(stderr, "Cannot mmap %s or %s\n", binwords_fname, binvecs_fname); | 
|  | 309 | exit(-1); | 
|  | 310 | } | 
|  | 311 | } else { | 
|  | 312 | fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname); | 
|  | 313 | exit(-1); | 
| Marc Kupietz | 67c2028 | 2016-02-26 09:42:00 +0100 | [diff] [blame] | 314 | } | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 315 | fclose(f); | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 316 |  | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 317 | if(net_name && strlen(net_name) > 0) { | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 318 | if( (net_fd = open(net_name, O_RDONLY)) >= 0) { | 
|  | 319 | window = (lseek(net_fd, 0, SEEK_END) -  sizeof(float) * words * size) / words / size / sizeof(float) / 2; | 
|  | 320 | //      lseek(net_fd, sizeof(float) * words * size, SEEK_SET); | 
| Marc Kupietz | 10bec2b | 2016-03-23 09:41:31 +0100 | [diff] [blame] | 321 | // munmap(M,  sizeof(float) * words * size); | 
|  | 322 | 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] | 323 | if (M2 == MAP_FAILED) { | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 324 | close(net_fd); | 
|  | 325 | fprintf(stderr, "Cannot mmap %s\n", net_name); | 
|  | 326 | exit(-1); | 
|  | 327 | } | 
| Marc Kupietz | 10bec2b | 2016-03-23 09:41:31 +0100 | [diff] [blame] | 328 | syn1neg_window =  M2 + words * size; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 329 | } else { | 
|  | 330 | fprintf(stderr, "Cannot open %s\n", net_name); | 
|  | 331 | exit(-1); | 
|  | 332 | } | 
|  | 333 | fprintf(stderr, "Successfully memmaped %s. Determined window size: %d\n", net_name, window); | 
|  | 334 | } | 
|  | 335 |  | 
|  | 336 | expTable = (float *) malloc((EXP_TABLE_SIZE + 1) * sizeof(float)); | 
|  | 337 | for (i = 0; i < EXP_TABLE_SIZE; i++) { | 
|  | 338 | expTable[i] = exp((i / (float) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); // Precompute the exp() table | 
|  | 339 | expTable[i] = expTable[i] / (expTable[i] + 1); // Precompute f(x) = x / (x + 1) | 
|  | 340 | } | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 341 | window_sums = malloc(sizeof(float) * (window+1) * 2); | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 342 | return 0; | 
|  | 343 | } | 
|  | 344 |  | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 345 | long mergeVectors(char *file_name){ | 
|  | 346 | FILE *f, *binvecs, *binwords; | 
|  | 347 | int binwords_fd, binvecs_fd, net_fd, i; | 
|  | 348 | long long a, b, c, d, cn; | 
|  | 349 | float len; | 
|  | 350 | float *merge_vecs; | 
|  | 351 | char *merge_vocab; | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 352 | /*  long long merge_words, merge_size; */ | 
|  | 353 | long long merge_size; | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 354 |  | 
|  | 355 | char binvecs_fname[256], binwords_fname[256]; | 
|  | 356 | strcpy(binwords_fname, file_name); | 
|  | 357 | strcat(binwords_fname, ".words"); | 
|  | 358 | strcpy(binvecs_fname, file_name); | 
|  | 359 | strcat(binvecs_fname, ".vecs"); | 
|  | 360 |  | 
|  | 361 | f = fopen(file_name, "rb"); | 
|  | 362 | if (f == NULL) { | 
|  | 363 | printf("Input file %s not found\n", file_name); | 
|  | 364 | exit -1; | 
|  | 365 | } | 
|  | 366 | fscanf(f, "%lld", &merge_words); | 
|  | 367 | fscanf(f, "%lld", &merge_size); | 
|  | 368 | if(merge_size != size){ | 
|  | 369 | fprintf(stderr, "vectors must have the same length\n"); | 
|  | 370 | exit(-1); | 
|  | 371 | } | 
|  | 372 | if( (binvecs_fd = open(binvecs_fname, O_RDONLY)) >= 0 && (binwords_fd = open(binwords_fname, O_RDONLY)) >= 0) { | 
|  | 373 | merge_vecs = malloc(sizeof(float) * (words + merge_words) * size); | 
|  | 374 | merge_vocab = malloc(sizeof(char) * (words + merge_words) * max_w); | 
|  | 375 | if (merge_vecs == NULL || merge_vocab == NULL) { | 
|  | 376 | close(binvecs_fd); | 
|  | 377 | close(binwords_fd); | 
|  | 378 | fprintf(stderr, "Cannot reserve memory for %s or %s\n", binwords_fname, binvecs_fname); | 
|  | 379 | exit(-1); | 
|  | 380 | } | 
|  | 381 | read(binvecs_fd, merge_vecs, merge_words * size * sizeof(float)); | 
|  | 382 | read(binwords_fd, merge_vocab, merge_words * max_w); | 
|  | 383 | } else { | 
|  | 384 | fprintf(stderr, "Cannot open %s or %s\n", binwords_fname, binvecs_fname); | 
|  | 385 | exit(-1); | 
|  | 386 | } | 
|  | 387 | printf("Successfully reallocated memory\nMerging...\n"); | 
|  | 388 | fflush(stdout); | 
|  | 389 | memcpy(merge_vecs + merge_words * size, M, words * size * sizeof(float)); | 
|  | 390 | memcpy(merge_vocab + merge_words * max_w, vocab, words * max_w); | 
|  | 391 | munmap(M, words * size * sizeof(float)); | 
|  | 392 | munmap(vocab, words * max_w); | 
|  | 393 | M = merge_vecs; | 
|  | 394 | vocab = merge_vocab; | 
|  | 395 | merged_end = merge_words; | 
|  | 396 | words += merge_words; | 
|  | 397 | fclose(f); | 
|  | 398 | printf("merged_end: %lld, words: %lld\n", merged_end, words); | 
|  | 399 | return((long) merged_end); | 
|  | 400 | } | 
|  | 401 |  | 
| Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 402 | void filter_garbage() { | 
|  | 403 | long i; | 
| Marc Kupietz | ab591a8 | 2016-04-28 14:08:49 +0200 | [diff] [blame] | 404 | unsigned char *w, previous, c; | 
| Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 405 | garbage = malloc(words); | 
|  | 406 | memset(garbage, 0, words); | 
|  | 407 | for (i = 0; i < words; i++) { | 
|  | 408 | w = vocab + i * max_w; | 
|  | 409 | previous = 0; | 
| Marc Kupietz | ab591a8 | 2016-04-28 14:08:49 +0200 | [diff] [blame] | 410 | while((c = *w++) && !garbage[i]) { | 
|  | 411 | if( ((c <= 90 && c >= 65) && (previous >= 97 && previous <= 122)) || | 
|  | 412 | (previous == '-' && (c & 32)) || | 
| Marc Kupietz | 33e3aa1 | 2017-11-09 16:19:38 +0100 | [diff] [blame] | 413 | (previous == 0xc2 && (c == 0xa4 || c == 0xb6 )) || | 
|  | 414 | c == '<' | 
| Marc Kupietz | ab591a8 | 2016-04-28 14:08:49 +0200 | [diff] [blame] | 415 | ) { | 
| Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 416 | garbage[i]=1; | 
|  | 417 | continue; | 
|  | 418 | } | 
|  | 419 | previous = c; | 
|  | 420 | } | 
|  | 421 | } | 
|  | 422 | return; | 
|  | 423 | } | 
|  | 424 |  | 
| Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 425 | void *getCollocators(void *args) { | 
|  | 426 | knnpars *pars = args; | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 427 | int N = pars->N; | 
|  | 428 | int cc = pars->wl->wordi[0]; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 429 | knn *nbs = NULL; | 
|  | 430 | long window_layer_size = size * window * 2; | 
|  | 431 | long a, b, c, d, e, window_offset, target, max_target=0, maxmax_target; | 
|  | 432 | float f, max_f, maxmax_f; | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 433 | float *target_sums, worstbest, wpos_sum; | 
|  | 434 | collocator *best; | 
| Marc Kupietz | d564258 | 2016-03-19 22:23:13 +0100 | [diff] [blame] | 435 |  | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 436 | if(M2 == NULL || cc == -1) | 
| Marc Kupietz | d564258 | 2016-03-19 22:23:13 +0100 | [diff] [blame] | 437 | return NULL; | 
|  | 438 |  | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 439 | a = posix_memalign((void **) &target_sums, 128, pars->cutoff * sizeof(float)); | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 440 | best = malloc(N * sizeof(collocator)); | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 441 | worstbest = MIN_RESP; | 
|  | 442 |  | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 443 | for (b = 0; b < pars->cutoff; b++) | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 444 | target_sums[b]=0; | 
| Marc Kupietz | b864ccf | 2016-03-21 22:40:03 +0100 | [diff] [blame] | 445 | for (b = 0; b < N; b++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 446 | best[b].wordi = -1; | 
|  | 447 | best[b].probability = 1; | 
|  | 448 | best[b].activation = worstbest; | 
| Marc Kupietz | b864ccf | 2016-03-21 22:40:03 +0100 | [diff] [blame] | 449 | } | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 450 |  | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 451 | d = cc; | 
|  | 452 | maxmax_f = -1; | 
|  | 453 | maxmax_target = 0; | 
|  | 454 |  | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 455 | for (a = pars->from; a < pars->upto; a++) { | 
|  | 456 | if(a >= window) | 
|  | 457 | a++; | 
| Marc Kupietz | b864ccf | 2016-03-21 22:40:03 +0100 | [diff] [blame] | 458 | wpos_sum = 0; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 459 | printf("window pos: %ld\n", a); | 
|  | 460 | if (a != window) { | 
|  | 461 | max_f = -1; | 
|  | 462 | window_offset = a * size; | 
|  | 463 | if (a > window) | 
|  | 464 | window_offset -= size; | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 465 | for(target = 0; target < pars->cutoff; target ++) { | 
|  | 466 | if(garbage && garbage[target]) continue; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 467 | if(target == d) | 
|  | 468 | continue; | 
|  | 469 | f = 0; | 
|  | 470 | for (c = 0; c < size; c++) | 
| Marc Kupietz | 10bec2b | 2016-03-23 09:41:31 +0100 | [diff] [blame] | 471 | 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] | 472 | if (f < -MAX_EXP) | 
|  | 473 | continue; | 
|  | 474 | else if (f > MAX_EXP) | 
|  | 475 | continue; | 
|  | 476 | else | 
|  | 477 | f = expTable[(int) ((f + MAX_EXP)	* (EXP_TABLE_SIZE / MAX_EXP / 2))]; | 
| Marc Kupietz | b864ccf | 2016-03-21 22:40:03 +0100 | [diff] [blame] | 478 | wpos_sum += f; | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 479 |  | 
| Marc Kupietz | ce3d4c6 | 2016-03-23 16:11:25 +0100 | [diff] [blame] | 480 | target_sums[target] += f; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 481 | if(f > worstbest) { | 
| Marc Kupietz | 6d9a678 | 2016-03-23 17:25:25 +0100 | [diff] [blame] | 482 | for (b = 0; b < N; b++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 483 | if (f > best[b].activation) { | 
|  | 484 | memmove(best + b + 1, best + b, (N - b -1) * sizeof(collocator)); | 
|  | 485 | best[b].activation = f; | 
|  | 486 | best[b].wordi = target; | 
|  | 487 | best[b].position = window-a; | 
| Marc Kupietz | 33679a3 | 2016-03-22 08:49:39 +0100 | [diff] [blame] | 488 | break; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 489 | } | 
|  | 490 | } | 
| Marc Kupietz | 6d9a678 | 2016-03-23 17:25:25 +0100 | [diff] [blame] | 491 | if(b == N - 1) | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 492 | worstbest = best[N-1].activation; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 493 | } | 
|  | 494 | } | 
|  | 495 | printf("%d %.2f\n", max_target, max_f); | 
|  | 496 | printf("%s (%.2f) ", &vocab[max_target * max_w], max_f); | 
|  | 497 | if(max_f > maxmax_f) { | 
|  | 498 | maxmax_f = max_f; | 
|  | 499 | maxmax_target = max_target; | 
|  | 500 | } | 
| Marc Kupietz | 33679a3 | 2016-03-22 08:49:39 +0100 | [diff] [blame] | 501 | for (b = 0; b < N; b++) | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 502 | if(best[b].position == window-a) | 
|  | 503 | best[b].probability = best[b].activation / wpos_sum; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 504 | } else { | 
|  | 505 | printf("\x1b[1m%s\x1b[0m ", &vocab[d*max_w]); | 
|  | 506 | } | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 507 | pars->window_sums[a] = wpos_sum; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 508 | } | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 509 | for (b = 0; b < pars->cutoff; b++) | 
| Marc Kupietz | ce3d4c6 | 2016-03-23 16:11:25 +0100 | [diff] [blame] | 510 | pars->target_sums[b] += (target_sums[b] / wpos_sum ) / (window * 2); | 
|  | 511 | free(target_sums); | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 512 | for(b=0; b<N && best[b].wordi >= 0; b++);; // THIS LOOP IS NEEDED (b...) | 
|  | 513 | //		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] | 514 | //	printf("\n"); | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 515 | nbs = malloc(sizeof(knn)); | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 516 | nbs->best = best; | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 517 | nbs->length = b-1; | 
|  | 518 | pthread_exit(nbs); | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 519 | } | 
|  | 520 |  | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 521 |  | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 522 | wordlist *getTargetWords(char *st1, int search_backw) { | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 523 | wordlist *wl = malloc(sizeof(wordlist)); | 
|  | 524 | char st[100][max_size], sep[100]; | 
|  | 525 | long a, b=0, c=0, cn=0; | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 526 | int unmerged; | 
|  | 527 |  | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 528 | while (1) { | 
|  | 529 | st[cn][b] = st1[c]; | 
|  | 530 | b++; | 
|  | 531 | c++; | 
|  | 532 | st[cn][b] = 0; | 
|  | 533 | if (st1[c] == 0) break; | 
| Marc Kupietz | 95aa1c0 | 2016-03-15 09:40:43 +0100 | [diff] [blame] | 534 | if (st1[c] == ' ' || st1[c] == '-') { | 
|  | 535 | sep[cn++] = st1[c]; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 536 | b = 0; | 
|  | 537 | c++; | 
|  | 538 | } | 
|  | 539 | } | 
|  | 540 | cn++; | 
|  | 541 | for (a = 0; a < cn; a++) { | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 542 | if(search_backw) { | 
|  | 543 | for (b = words - 1; b >= 0; b--) if (!strcmp(&vocab[b * max_w], st[a])) break; | 
|  | 544 | }  else { | 
|  | 545 | for (b = 0; b < words; b++) if (!strcmp(&vocab[b * max_w], st[a])) break; | 
|  | 546 | } | 
| Marc Kupietz | 34a3ee9 | 2016-02-27 22:43:16 +0100 | [diff] [blame] | 547 | if (b == words) b = -1; | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 548 | wl->wordi[a] = b; | 
|  | 549 | fprintf(stderr, "Word: \"%s\"  Position in vocabulary: %lld\n", st[a], wl->wordi[a]); | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 550 | if (b == -1) { | 
| Marc Kupietz | e8da306 | 2016-02-25 08:37:53 +0100 | [diff] [blame] | 551 | fprintf(stderr, "Out of dictionary word!\n"); | 
| Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 552 | cn--; | 
| Marc Kupietz | f9ac54e | 2017-11-21 09:22:29 +0100 | [diff] [blame] | 553 | free(wl); | 
|  | 554 | return NULL; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 555 | } | 
|  | 556 | } | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 557 | wl->length=cn; | 
|  | 558 | return(wl); | 
|  | 559 | } | 
|  | 560 |  | 
| Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 561 | void *_get_neighbours(void *arg) { | 
|  | 562 | knnpars *pars = arg; | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 563 | char *st1 = pars->token; | 
|  | 564 | int N = pars->N; | 
|  | 565 | long from = pars -> from; | 
|  | 566 | unsigned long upto = pars -> upto; | 
|  | 567 | char file_name[max_size], st[100][max_size], *sep; | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 568 | float dist, len, vec[max_size]; | 
|  | 569 | long long a, b, c, d, cn, *bi; | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 570 | char ch; | 
|  | 571 | knn *nbs = NULL; | 
|  | 572 | wordlist *wl = pars->wl; | 
|  | 573 |  | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 574 | collocator *best = malloc(N * sizeof(collocator)); | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 575 |  | 
|  | 576 | float worstbest=-1; | 
|  | 577 |  | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 578 | for (a = 0; a < N; a++) best[a].activation = 0; | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 579 | a = 0; | 
|  | 580 | bi = wl->wordi; | 
|  | 581 | cn = wl->length; | 
|  | 582 | sep = wl->sep; | 
|  | 583 | b = bi[0]; | 
|  | 584 | c = 0; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 585 | if (b == -1) { | 
| Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 586 | N = 0; | 
|  | 587 | goto end; | 
|  | 588 | } | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 589 | for (a = 0; a < size; a++) vec[a] = 0; | 
|  | 590 | for (b = 0; b < cn; b++) { | 
|  | 591 | if (bi[b] == -1) continue; | 
| Marc Kupietz | 95aa1c0 | 2016-03-15 09:40:43 +0100 | [diff] [blame] | 592 | if(b>0 && sep[b-1] == '-') | 
|  | 593 | for (a = 0; a < size; a++) vec[a] -= M[a + bi[b] * size]; | 
|  | 594 | else | 
|  | 595 | 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] | 596 | } | 
|  | 597 | len = 0; | 
|  | 598 | for (a = 0; a < size; a++) len += vec[a] * vec[a]; | 
|  | 599 | len = sqrt(len); | 
|  | 600 | for (a = 0; a < size; a++) vec[a] /= len; | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 601 | for (a = 0; a < N; a++) best[a].activation = -1; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 602 | for (c = from; c < upto; c++) { | 
| Marc Kupietz | 5c3887d | 2016-04-28 08:53:35 +0200 | [diff] [blame] | 603 | if(garbage && garbage[c]) continue; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 604 | a = 0; | 
| Marc Kupietz | 34020dc | 2016-02-25 08:44:19 +0100 | [diff] [blame] | 605 | // do not skip taget word | 
| Marc Kupietz | e8da306 | 2016-02-25 08:37:53 +0100 | [diff] [blame] | 606 | //		for (b = 0; b < cn; b++) if (bi[b] == c) a = 1; | 
|  | 607 | //		if (a == 1) continue; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 608 | dist = 0; | 
|  | 609 | 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] | 610 | if(dist > worstbest) { | 
|  | 611 | for (a = 0; a < N; a++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 612 | if (dist > best[a].activation) { | 
|  | 613 | memmove(best + a + 1, best + a, (N - a -1) * sizeof(collocator)); | 
|  | 614 | best[a].activation = dist; | 
|  | 615 | best[a].wordi = c; | 
| Marc Kupietz | be1b9fc | 2016-02-26 10:34:30 +0100 | [diff] [blame] | 616 | break; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 617 | } | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 618 | } | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 619 | worstbest = best[N-1].activation; | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 620 | } | 
|  | 621 | } | 
| Marc Kupietz | 34020dc | 2016-02-25 08:44:19 +0100 | [diff] [blame] | 622 |  | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 623 | nbs = malloc(sizeof(knn)); | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 624 | nbs->best = best; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 625 | nbs->length = N; | 
| Marc Kupietz | 44bee3c | 2016-02-25 16:26:29 +0100 | [diff] [blame] | 626 | end: | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 627 | pthread_exit(nbs); | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 628 | } | 
|  | 629 |  | 
| Marc Kupietz | e0e4213 | 2017-11-24 16:44:34 +0100 | [diff] [blame] | 630 | int cmp_activation (const void * a, const void * b) { | 
|  | 631 | float fb = ((collocator *)a)->activation; | 
|  | 632 | float fa = ((collocator *)b)->activation; | 
|  | 633 | return (fa > fb) - (fa < fb); | 
|  | 634 | } | 
|  | 635 |  | 
|  | 636 | int cmp_probability (const void * a, const void * b) { | 
|  | 637 | float fb = ((collocator *)a)->probability; | 
|  | 638 | float fa = ((collocator *)b)->probability; | 
|  | 639 | return (fa > fb) - (fa < fb); | 
|  | 640 | } | 
|  | 641 |  | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 642 |  | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 643 | SV *get_neighbours(char *st1, int N, int sort_by, int search_backw, long cutoff, int dedupe) { | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 644 | HV *result = newHV(); | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 645 | float *target_sums, vec[max_size]; | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 646 | long long old_words; | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 647 | long a, b, c, d, slice; | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 648 | knn *para_nbs[MAX_THREADS]; | 
|  | 649 | knn *syn_nbs[MAX_THREADS]; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 650 | knnpars pars[MAX_THREADS]; | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 651 | pthread_t *pt = (pthread_t *)malloc((num_threads+1) * sizeof(pthread_t)); | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 652 | wordlist *wl; | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 653 | int syn_threads = (M2? window * 2 : 0); | 
|  | 654 | int para_threads = num_threads - syn_threads; | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 655 |  | 
|  | 656 | collocator *best = malloc(MAX_NEIGHBOURS * sizeof(collocator)); | 
|  | 657 |  | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 658 | if(N>MAX_NEIGHBOURS) N=MAX_NEIGHBOURS; | 
|  | 659 |  | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 660 | if(cutoff < 1) | 
|  | 661 | cutoff=words; | 
|  | 662 |  | 
| Marc Kupietz | a2e6450 | 2016-04-27 09:53:51 +0200 | [diff] [blame] | 663 | wl = getTargetWords(st1, search_backw); | 
| Marc Kupietz | f9ac54e | 2017-11-21 09:22:29 +0100 | [diff] [blame] | 664 | if(wl == NULL || wl->length < 1) | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 665 | goto end; | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 666 |  | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 667 | old_words = cutoff; | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 668 | if(merge_words > 0) | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 669 | cutoff = merge_words * 1.25;  /* HACK */ | 
|  | 670 | slice = cutoff / para_threads; | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 671 |  | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 672 | a = posix_memalign((void **) &target_sums, 128, cutoff * sizeof(float)); | 
|  | 673 | for(a = 0; a < cutoff; a++) | 
| Marc Kupietz | ce3d4c6 | 2016-03-23 16:11:25 +0100 | [diff] [blame] | 674 | target_sums[a] = 0; | 
|  | 675 |  | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 676 | printf("Starting %d threads\n", para_threads); | 
|  | 677 | fflush(stdout); | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 678 | for(a=0; a < para_threads; a++) { | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 679 | pars[a].cutoff = cutoff; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 680 | pars[a].token = st1; | 
| Marc Kupietz | 48c2968 | 2016-03-19 11:30:43 +0100 | [diff] [blame] | 681 | pars[a].wl = wl; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 682 | pars[a].N = N; | 
|  | 683 | pars[a].from = a*slice; | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 684 | pars[a].upto = ((a+1)*slice > cutoff? cutoff:(a+1)*slice); | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 685 | pthread_create(&pt[a], NULL, _get_neighbours, (void *) &pars[a]); | 
|  | 686 | } | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 687 | if(M2) { | 
|  | 688 | for(a=0; a < syn_threads; a++) { | 
| Marc Kupietz | 2c79c5e | 2017-11-09 16:18:40 +0100 | [diff] [blame] | 689 | pars[a + para_threads].cutoff = cutoff; | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 690 | pars[a + para_threads].target_sums = target_sums; | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 691 | pars[a + para_threads].window_sums = window_sums; | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 692 | pars[a + para_threads].wl = wl; | 
|  | 693 | pars[a + para_threads].N = N; | 
|  | 694 | pars[a + para_threads].from = a; | 
|  | 695 | pars[a + para_threads].upto = a+1; | 
|  | 696 | pthread_create(&pt[a + para_threads], NULL, getCollocators, (void *) &pars[a + para_threads]); | 
|  | 697 | } | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 698 | } | 
|  | 699 | printf("Waiting for para threads to join\n"); | 
|  | 700 | fflush(stdout); | 
| Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 701 | 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] | 702 | printf("Para threads joint\n"); | 
|  | 703 | fflush(stdout); | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 704 |  | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 705 | /* if(!syn_nbs[0]) */ | 
|  | 706 | /* 	goto end; */ | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 707 |  | 
|  | 708 | for(b=0; b < N; b++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 709 | best[b].wordi = para_nbs[0]->best[b].wordi; | 
|  | 710 | best[b].activation = para_nbs[0]->best[b].activation; | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 711 | } | 
|  | 712 |  | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 713 | for(a=1; a < para_threads; a++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 714 | for(b=0; b < para_nbs[a]->length && para_nbs[a]->best[b].wordi >= 0; b++) { | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 715 | for(c=0; c < N * para_threads; c++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 716 | if(para_nbs[a]->best[b].activation > best[c].activation) { | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 717 | for(d=N-1; d>c; d--) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 718 | memmove(best + d, best + d - 1, sizeof(collocator)); | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 719 | } | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 720 | memcpy(best + c, ¶_nbs[a]->best[b], sizeof(collocator)); | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 721 | break; | 
|  | 722 | } | 
|  | 723 | } | 
|  | 724 | } | 
|  | 725 | } | 
|  | 726 |  | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 727 | char *chosen[600]; | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 728 | AV* array = newAV(); | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 729 | int i, j; | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 730 | int l1_words=0, l2_words=0; | 
|  | 731 | for (a = 0, i = 0; i < N && a < 600; a++) { | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 732 | int filtered=0; | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 733 | long long c = best[a].wordi; | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 734 | if (dedupe && i > 0) { | 
|  | 735 | for (j=0; j<i; j++) | 
|  | 736 | if (strcasestr(&vocab[c * max_w], chosen[j]) || | 
|  | 737 | strcasestr(chosen[j], &vocab[c * max_w])) { | 
|  | 738 | printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]); | 
|  | 739 | filtered = 1; | 
|  | 740 | } | 
|  | 741 | if(filtered) | 
|  | 742 | continue; | 
|  | 743 | } | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 744 | if(merge_words > 0) { | 
|  | 745 | if(c >= merge_words) { | 
|  | 746 | if(l1_words > N / 2) | 
|  | 747 | continue; | 
|  | 748 | else | 
|  | 749 | l1_words++; | 
|  | 750 | } else { | 
|  | 751 | if(l2_words > N / 2) | 
|  | 752 | continue; | 
|  | 753 | else | 
|  | 754 | l2_words++; | 
|  | 755 | } | 
|  | 756 | } | 
|  | 757 | fflush(stdout); | 
|  | 758 | printf("%s l1:%d l2:%d i:%d a:%ld\n", &vocab[c * max_w], l1_words, l2_words, i, a); | 
|  | 759 |  | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 760 | HV* hash = newHV(); | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 761 | SV* word = newSVpvf(&vocab[c * max_w], 0); | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 762 | chosen[i] = &vocab[c * max_w]; | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 763 | if(latin_enc == 0) SvUTF8_on(word); | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 764 | fflush(stdout); | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 765 | hv_store(hash, "word", strlen("word"), word , 0); | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 766 | hv_store(hash, "dist", strlen("dist"), newSVnv(best[a].activation), 0); | 
|  | 767 | hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0); | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 768 | AV *vector = newAV(); | 
|  | 769 | for (b = 0; b < size; b++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 770 | av_push(vector, newSVnv(M[b + best[a].wordi * size])); | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 771 | } | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 772 | hv_store(hash, "vector", strlen("vector"), newRV_noinc((SV*)vector), 0); | 
|  | 773 | av_push(array, newRV_noinc((SV*)hash)); | 
| Marc Kupietz | a5f6004 | 2017-05-04 10:38:12 +0200 | [diff] [blame] | 774 | i++; | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 775 | } | 
|  | 776 | hv_store(result, "paradigmatic", strlen("paradigmatic"), newRV_noinc((SV*)array), 0); | 
|  | 777 |  | 
| Marc Kupietz | 50485ba | 2016-03-23 09:13:14 +0100 | [diff] [blame] | 778 | for(b=0; b < MAX_NEIGHBOURS; b++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 779 | best[b].wordi = -1L; | 
|  | 780 | best[b].activation = 0; | 
|  | 781 | best[b].probability = 0; | 
|  | 782 | best[b].position = 0; | 
|  | 783 | best[b].activation_sum = 0; | 
| Marc Kupietz | 50485ba | 2016-03-23 09:13:14 +0100 | [diff] [blame] | 784 | } | 
|  | 785 |  | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 786 | if (M2) { | 
|  | 787 | printf("Waiting for syn threads to join\n"); | 
|  | 788 | fflush(stdout); | 
| Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 789 | for (a = 0; a < syn_threads; a++) pthread_join(pt[a+para_threads], (void *) &syn_nbs[a]); | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 790 | for (a = 0; a <= syn_threads; a++)			printf("window pos: %d, sum: %f\n", a, window_sums[a]); | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 791 | printf("syn threads joint\n"); | 
|  | 792 | fflush(stdout); | 
| Marc Kupietz | 50485ba | 2016-03-23 09:13:14 +0100 | [diff] [blame] | 793 |  | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 794 | for(b=0; b < syn_nbs[0]->length; b++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 795 | memcpy(best + b, &syn_nbs[0]->best[b], sizeof(collocator)); | 
|  | 796 | best[b].position = -1; //  syn_nbs[0]->pos[b]; | 
|  | 797 | best[b].activation_sum = target_sums[syn_nbs[0]->best[b].wordi]; | 
| Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame^] | 798 | best[b].max_activation = 0.0; | 
|  | 799 | best[b].conorm = 0.0; | 
|  | 800 | best[b].probability = 0.0; | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 801 | } | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 802 |  | 
|  | 803 | float best_window_sum[MAX_NEIGHBOURS]; | 
|  | 804 | int found_index=0, i=0, j, w; | 
| Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 805 | for(a=0; a < syn_threads; a++) { | 
|  | 806 | for(b=0; b < syn_nbs[a]->length; b++) { | 
|  | 807 | for(i=0; i < found_index; i++) | 
|  | 808 | if(best[i].wordi == syn_nbs[a]->best[b].wordi) | 
|  | 809 | break; | 
|  | 810 | if(i >= found_index) { | 
| Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame^] | 811 | best[found_index].max_activation = 0.0; | 
|  | 812 | best[found_index].conorm = 0.0; | 
|  | 813 | best[found_index].probability = 0.0; | 
| Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 814 | best[found_index++].wordi = syn_nbs[a]->best[b].wordi; | 
|  | 815 | //						printf("found: %s\n", &vocab[syn_nbs[a]->index[b] * max_w]); | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 816 | } | 
|  | 817 | } | 
| Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 818 | } | 
|  | 819 | if(sort_by != 1 && sort_by != 2) { // sort by auto focus mean | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 820 | 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] | 821 | int wpos; | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 822 | for(i=0; i < found_index; i++) { | 
| Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame^] | 823 | best[i].activation = best[i].probability = best[i].conorm = 0; | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 824 | for(w=1; w <  (1 << syn_threads); w++) { // loop through all possible windows | 
| Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame^] | 825 | float word_window_sum = 0, word_window_conorm=0, word_activation_sum = 0, total_window_sum = 0; | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 826 | int bits_set = 0; | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 827 | for(a=0; a < syn_threads; a++) { | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 828 | if((1 << a) & w) { | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 829 | wpos = (a >= window? a+1 : a); | 
|  | 830 | total_window_sum += window_sums[wpos]; | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 831 | } | 
|  | 832 | } | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 833 | //					printf("%d window-sum %f\n", w, total_window_sum); | 
|  | 834 | for(a=0; a < syn_threads; a++) { | 
|  | 835 | if((1 << a) & w) { | 
|  | 836 | wpos = (a >= window? a+1 : a); | 
|  | 837 | bits_set++; | 
|  | 838 | for(b=0; b < syn_nbs[a]->length; b++) | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 839 | if(best[i].wordi == syn_nbs[a]->best[b].wordi) { | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 840 | //                  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] | 841 | //                    word_window_sum += syn_nbs[a]->norm[b]; // / window_sums[wpos];  // syn_nbs[a]->norm[b]; | 
|  | 842 | //                  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 | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame^] | 843 | word_window_sum += syn_nbs[a]->best[b].activation; // / window_sums[wpos];  // syn_nbs[a]->norm[b]; | 
|  | 844 | word_window_conorm += syn_nbs[a]->best[b].activation - word_window_sum * syn_nbs[a]->best[b].activation;  // conormalied activation sum | 
|  | 845 | word_activation_sum += syn_nbs[a]->best[b].activation; | 
|  | 846 | if(syn_nbs[a]->best[b].activation > best[i].max_activation) | 
|  | 847 | best[i].max_activation = syn_nbs[a]->best[b].activation; | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 848 | word_activation_sum += syn_nbs[a]->best[b].activation; | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 849 | } | 
|  | 850 | } | 
|  | 851 | } | 
|  | 852 | //          if(bits_set) { | 
|  | 853 | //						word_activation_sum /= bits_set; | 
|  | 854 | //						word_window_sum /= bits_set; | 
|  | 855 | //          } | 
| Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame^] | 856 | word_window_sum /= total_window_sum; | 
| Marc Kupietz | bd41da3 | 2017-11-24 10:26:43 +0100 | [diff] [blame] | 857 |  | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 858 | if(word_window_sum > best[i].probability) { | 
|  | 859 | best[i].probability = word_window_sum; | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 860 | best[i].position = w; | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 861 | } | 
| Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame^] | 862 |  | 
|  | 863 | if(word_window_conorm > best[i].conorm) { | 
|  | 864 | best[i].conorm = word_window_conorm; | 
|  | 865 | best[i].activation = word_activation_sum; | 
|  | 866 | } | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 867 | } | 
|  | 868 | } | 
| Marc Kupietz | e0e4213 | 2017-11-24 16:44:34 +0100 | [diff] [blame] | 869 | qsort(best, found_index, sizeof(collocator), cmp_probability); | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 870 | //      for(i=0; i < found_index; i++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 871 | //				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] | 872 | //			} | 
|  | 873 |  | 
| Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 874 | } else if(sort_by == 1) { // responsiveness any window position | 
|  | 875 | int wpos; | 
|  | 876 | for(i=0; i < found_index; i++) { | 
|  | 877 | float word_window_sum = 0, word_activation_sum = 0, total_window_sum = 0; | 
|  | 878 | for(a=0; a < syn_threads; a++) { | 
|  | 879 | wpos = (a >= window? a+1 : a); | 
|  | 880 | for(b=0; b < syn_nbs[a]->length; b++) | 
|  | 881 | if(best[i].wordi == syn_nbs[a]->best[b].wordi) { | 
|  | 882 | best[i].probability += syn_nbs[a]->best[b].probability; | 
|  | 883 | if(syn_nbs[a]->best[b].activation > 0.25) | 
|  | 884 | best[i].position |= 1 << wpos; | 
|  | 885 | if(syn_nbs[a]->best[b].activation > best[i].activation) { | 
|  | 886 | best[i].activation = syn_nbs[a]->best[b].activation; | 
|  | 887 | } | 
|  | 888 | } | 
|  | 889 | } | 
|  | 890 | } | 
|  | 891 | qsort(best, found_index, sizeof(collocator), cmp_activation); | 
|  | 892 | } else if(sort_by == 2) { // single window position | 
| Marc Kupietz | 30ca434 | 2017-11-22 21:21:20 +0100 | [diff] [blame] | 893 | for(a=1; a < syn_threads; a++) { | 
|  | 894 | for(b=0; b < syn_nbs[a]->length; b++) { | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 895 | for(c=0; c < MAX_NEIGHBOURS; c++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 896 | if(syn_nbs[a]->best[b].activation > best[c].activation) { | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 897 | for(d=MAX_NEIGHBOURS-1; d>c; d--) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 898 | memmove(best + d, best + d - 1, sizeof(collocator)); | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 899 | } | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 900 | memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator)); | 
|  | 901 | 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] | 902 | break; | 
| Marc Kupietz | 6d9a678 | 2016-03-23 17:25:25 +0100 | [diff] [blame] | 903 | } | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 904 | } | 
|  | 905 | } | 
|  | 906 | } | 
|  | 907 | } else { // sort by mean p | 
|  | 908 | for(a=1; a < syn_threads; a++) { | 
|  | 909 | for(b=0; b < syn_nbs[a]->length; b++) { | 
|  | 910 | for(c=0; c < MAX_NEIGHBOURS; c++) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 911 | 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] | 912 | for(d=MAX_NEIGHBOURS-1; d>c; d--) { | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 913 | memmove(best + d, best + d - 1, sizeof(collocator)); | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 914 | } | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 915 | memcpy(best + c, &syn_nbs[a]->best[b], sizeof(collocator)); | 
|  | 916 | best[c].position = (1 << 2*window) - 1; // syn_nbs[a]->pos[b]; | 
|  | 917 | best[c].activation_sum = target_sums[syn_nbs[a]->best[b].wordi]; | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 918 | break; | 
|  | 919 | } | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 920 | } | 
| Marc Kupietz | 6d9a678 | 2016-03-23 17:25:25 +0100 | [diff] [blame] | 921 | } | 
|  | 922 | } | 
|  | 923 | } | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 924 | array = newAV(); | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 925 | for (a = 0, i=0; a < MAX_NEIGHBOURS && best[a].wordi >= 0; a++) { | 
|  | 926 | long long c = best[a].wordi; | 
| Marc Kupietz | d91212f | 2017-11-13 10:05:09 +0100 | [diff] [blame] | 927 | if (dedupe) { | 
|  | 928 | int filtered=0; | 
|  | 929 | for (j=0; j<i; j++) | 
|  | 930 | if (strcasestr(&vocab[c * max_w], chosen[j]) || | 
|  | 931 | strcasestr(chosen[j], &vocab[c * max_w])) { | 
|  | 932 | printf("filtering %s %s\n", chosen[j], &vocab[c * max_w]); | 
|  | 933 | filtered = 1; | 
|  | 934 | } | 
|  | 935 | if(filtered) | 
|  | 936 | continue; | 
|  | 937 | } | 
|  | 938 | chosen[i++]=&vocab[c * max_w]; | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 939 | HV* hash = newHV(); | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 940 | SV* word = newSVpvf(&vocab[best[a].wordi * max_w], 0); | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 941 | if(latin_enc == 0) SvUTF8_on(word); | 
|  | 942 | hv_store(hash, "word", strlen("word"), word , 0); | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 943 | hv_store(hash, "rank", strlen("rank"), newSVuv(best[a].wordi), 0); | 
| Marc Kupietz | d64f3f2 | 2017-11-30 12:07:42 +0100 | [diff] [blame^] | 944 | hv_store(hash, "conorm", strlen("conorm"), newSVnv(best[a].conorm), 0); | 
|  | 945 | hv_store(hash, "prob", strlen("prob"), newSVnv(best[a].probability), 0); | 
|  | 946 | hv_store(hash, "max", strlen("max"), newSVnv(best[a].max_activation), 0); // newSVnv(target_sums[best[a].wordi]), 0); | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 947 | hv_store(hash, "pos", strlen("pos"), newSVnv(best[a].position), 0); | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 948 | av_push(array, newRV_noinc((SV*)hash)); | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 949 | } | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 950 | hv_store(result, "syntagmatic", strlen("syntagmatic"), newRV_noinc((SV*)array), 0); | 
| Marc Kupietz | 271e2a4 | 2016-03-22 11:37:43 +0100 | [diff] [blame] | 951 | } | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 952 | end: | 
| Marc Kupietz | 580ebdf | 2017-11-29 21:18:38 +0100 | [diff] [blame] | 953 | words = old_words; | 
| Marc Kupietz | c8fdf3c | 2017-11-24 15:32:19 +0100 | [diff] [blame] | 954 | free(best); | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 955 | return newRV_noinc((SV*)result); | 
| Marc Kupietz | 000ad86 | 2016-02-26 14:59:12 +0100 | [diff] [blame] | 956 | } | 
| Marc Kupietz | 7bc85fd | 2016-02-24 11:42:41 +0100 | [diff] [blame] | 957 |  | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 958 | int dump_vecs(char *fname) { | 
|  | 959 | long i, j; | 
|  | 960 | FILE *f; | 
|  | 961 | /* if(words>200000) */ | 
|  | 962 | /* 	words=200000; */ | 
| Marc Kupietz | 6b2975c | 2016-03-18 21:59:33 +0100 | [diff] [blame] | 963 |  | 
| Marc Kupietz | 43ee87e | 2016-04-25 10:50:08 +0200 | [diff] [blame] | 964 | if((f=fopen(fname, "w")) == NULL) { | 
|  | 965 | fprintf(stderr, "cannot open %s for writing\n", fname); | 
|  | 966 | return(-1); | 
|  | 967 | } | 
|  | 968 | fprintf(f, "%lld %lld\n", words, size); | 
|  | 969 | for (i=0; i < words; i++) { | 
|  | 970 | fprintf(f, "%s ", &vocab[i * max_w]); | 
|  | 971 | for(j=0; j < size - 1; j++) | 
|  | 972 | fprintf(f, "%f ", M[i*size + j]); | 
|  | 973 | fprintf(f, "%f\n", M[i*size + j]); | 
|  | 974 | } | 
|  | 975 | fclose(f); | 
|  | 976 | return(0); | 
|  | 977 | } | 
| Marc Kupietz | dc22b98 | 2015-10-09 09:19:34 +0200 | [diff] [blame] | 978 |  |