derekovecs: use official API url for getting background corpus collocates
diff --git a/w2v-server.pl b/w2v-server.pl
index 2b8c35d..a979113 100755
--- a/w2v-server.pl
+++ b/w2v-server.pl
@@ -144,8 +144,7 @@
}
if($opt_p >= 5000 && $opt_p < 5600) { # German non-reference
- open PIPE, "GET http://compute:5673/getClassicCollocators?w=$word |" or
- open PIPE, "GET http://klinux10:5673/getClassicCollocators?w=$word |";
+ open PIPE, "GET http://corpora.ids-mannheim.de/openlab/derekovecs/getClassicCollocators?w=$word |";
}
if(!$cccache{$word}) {
$c->app->log->info("Getting classic collocates of $word.");