blob: 4b98a76c0e4f39614152c4b2a2f0207901e49e9b [file] [log] [blame]
Marc Kupietz28cc53e2017-12-23 17:24:55 +01001#include <typeinfo>
Marc Kupietz4b799e92018-01-02 11:04:56 +01002#define EXPORT __attribute__((visibility("visible")))
3#define IMPORT
Marc Kupietz28cc53e2017-12-23 17:24:55 +01004#include <assert.h>
Marc Kupietz37359b12018-01-09 21:11:37 +01005#include <inttypes.h>
Marc Kupietz28cc53e2017-12-23 17:24:55 +01006#include <memory>
7#include <iostream>
Marc Kupietzc8ddf452018-01-07 21:33:12 +01008#include <algorithm>
9#include <vector>
Marc Kupietz28cc53e2017-12-23 17:24:55 +010010#include <stdint.h>
Marc Kupietzc8ddf452018-01-07 21:33:12 +010011#include <string>
12#include <sstream> // for ostringstream
13#include <math.h>
Marc Kupietzd31254c2018-01-20 21:29:30 +010014#include <rocksdb/cache.h>
Marc Kupietz28cc53e2017-12-23 17:24:55 +010015#include "rocksdb/comparator.h"
16#include "rocksdb/db.h"
17#include "rocksdb/env.h"
Marc Kupietzc8ddf452018-01-07 21:33:12 +010018#include "rocksdb/table.h"
Marc Kupietz28cc53e2017-12-23 17:24:55 +010019#include <rocksdb/merge_operator.h>
Marc Kupietzc8ddf452018-01-07 21:33:12 +010020#include <rocksdb/slice_transform.h>
Marc Kupietz28cc53e2017-12-23 17:24:55 +010021#include "rocksdb/utilities/db_ttl.h"
Marc Kupietzc8ddf452018-01-07 21:33:12 +010022#include "rocksdb/filter_policy.h"
Marc Kupietz28cc53e2017-12-23 17:24:55 +010023#include "merge_operators.h"
24
Marc Kupietz75af60f2019-01-22 22:34:29 +010025#define WINDOW_SIZE 5
Marc Kupietz98cbcdc2019-01-21 17:11:27 +010026#define FREQUENCY_THRESHOLD 5
Marc Kupietz28cc53e2017-12-23 17:24:55 +010027#define IS_BIG_ENDIAN (*(uint16_t *)"\0\xff" < 0x100)
28#define encodeCollocation(w1, w2, dist) (((uint64_t)dist << 56) | ((uint64_t)w2 << 24) | w1)
Marc Kupietz18375e12017-12-24 10:11:18 +010029#define W1(key) (uint64_t)(key & 0xffffff)
30#define W2(key) (uint64_t)((key >> 24) & 0xffffff)
31#define DIST(key) (int8_t)((uint64_t)((key >> 56) & 0xff))
Marc Kupietzc8ddf452018-01-07 21:33:12 +010032
33typedef struct {
34 uint64_t freq;
35 char *word;
36} vocab_entry;
37
38// typedef struct Collocator {
39// uint64_t w2;
40// uint64_t sum;
41// };
42
Marc Kupietz28cc53e2017-12-23 17:24:55 +010043using namespace rocksdb;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010044using namespace std;
Marc Kupietz28cc53e2017-12-23 17:24:55 +010045
Marc Kupietz4b799e92018-01-02 11:04:56 +010046namespace rocksdb {
Marc Kupietz4a5e08a2018-06-05 11:07:11 +020047 class Collocator {
48 public:
Marc Kupietz8c62c372019-01-31 12:21:01 +010049 uint32_t w2;
Marc Kupietzcc6c4592019-01-23 10:11:23 +010050 uint64_t f2;
Marc Kupietz51f93792018-01-25 08:51:01 +010051 uint64_t raw;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010052 double pmi;
53 double npmi;
54 double llr;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010055 double lfmd;
Marc Kupietz41880452019-01-22 15:29:06 +010056 double md;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +010057 double left_lfmd;
58 double right_lfmd;
59 double left_npmi;
60 double right_npmi;
Marc Kupietz41880452019-01-22 15:29:06 +010061 double dice;
62 double logdice;
Marc Kupietz75af60f2019-01-22 22:34:29 +010063 double af;
64 int window;
Marc Kupietze9f58932019-01-24 15:12:59 +010065 int af_window;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010066 };
67
Marc Kupietz28cc53e2017-12-23 17:24:55 +010068 size_t num_merge_operator_calls;
69 void resetNumMergeOperatorCalls() { num_merge_operator_calls = 0; }
Marc Kupietzc8ddf452018-01-07 21:33:12 +010070
Marc Kupietz28cc53e2017-12-23 17:24:55 +010071 size_t num_partial_merge_calls;
72 void resetNumPartialMergeCalls() { num_partial_merge_calls = 0; }
Marc Kupietz28cc53e2017-12-23 17:24:55 +010073
74
Marc Kupietz4b799e92018-01-02 11:04:56 +010075 inline void EncodeFixed64(char* buf, uint64_t value) {
76 if (! IS_BIG_ENDIAN) {
77 memcpy(buf, &value, sizeof(value));
78 } else {
79 buf[0] = value & 0xff;
80 buf[1] = (value >> 8) & 0xff;
81 buf[2] = (value >> 16) & 0xff;
82 buf[3] = (value >> 24) & 0xff;
83 buf[4] = (value >> 32) & 0xff;
84 buf[5] = (value >> 40) & 0xff;
85 buf[6] = (value >> 48) & 0xff;
86 buf[7] = (value >> 56) & 0xff;
87 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +010088 }
89
Marc Kupietz4b799e92018-01-02 11:04:56 +010090 inline uint32_t DecodeFixed32(const char* ptr) {
91 if (! IS_BIG_ENDIAN) {
92 // Load the raw bytes
93 uint32_t result;
94 memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load
95 return result;
96 } else {
97 return ((static_cast<uint32_t>(static_cast<unsigned char>(ptr[0])))
98 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[1])) << 8)
99 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[2])) << 16)
100 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[3])) << 24));
101 }
102 }
103
104 inline uint64_t DecodeFixed64(const char* ptr) {
105 if (! IS_BIG_ENDIAN) {
106 // Load the raw bytes
107 uint64_t result;
108 memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load
109 return result;
110 } else {
111 uint64_t lo = DecodeFixed32(ptr);
112 uint64_t hi = DecodeFixed32(ptr + 4);
113 return (hi << 32) | lo;
114 }
115 }
116
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100117 static inline double ca_pmi(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
Marc Kupietz1335dd72019-01-22 15:35:21 +0100118 double
119 r1 = f1 * window_size,
120 c1 = f2,
121 e = r1 * c1 / total,
122 o = f12;
123 return log2(o/e);
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100124 }
125
Marc Kupietzce0b8b02018-06-05 11:06:39 +0200126 // Bouma, Gerlof (2009): <a href="https://svn.spraakdata.gu.se/repos/gerlof/pub/www/Docs/npmi-pfd.pdf">
127 // Normalized (pointwise) mutual information in collocation extraction</a>. In Proceedings of GSCL.
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100128 static inline double ca_npmi(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
Marc Kupietz1335dd72019-01-22 15:35:21 +0100129 double
130 r1 = f1 * window_size,
131 c1 = f2,
132 e = r1 * c1 / total,
133 o = f12;
134 if(f12 < FREQUENCY_THRESHOLD)
Marc Kupietz8caf9912018-06-05 10:51:18 +0200135 return -1.0;
136 else
Marc Kupietz1335dd72019-01-22 15:35:21 +0100137 return log2(o/e) / (-log2(o/total/window_size));
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100138 }
139
140 // Thanopoulos, A., Fakotakis, N., Kokkinakis, G.: Comparative evaluation of collocation extraction metrics.
141 // In: International Conference on Language Resources and Evaluation (LREC-2002). (2002) 620–625
142 // double md = log2(pow((double)max * window_size / total, 2) / (window_size * ((double)_vocab[w1].freq/total) * ((double)_vocab[last_w2].freq/total)));
143 static inline double ca_md(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
Marc Kupietz1335dd72019-01-22 15:35:21 +0100144 double
145 r1 = f1 * window_size,
146 c1 = f2,
147 e = r1 * c1 / total,
148 o = f12;
149 return log2(o*o/e);
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100150 }
151
152 static inline double ca_lfmd(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
Marc Kupietz1335dd72019-01-22 15:35:21 +0100153 double
154 r1 = f1 * window_size,
155 c1 = f2,
156 e = r1 * c1 / total,
157 o = f12;
Marc Kupietz8caf9912018-06-05 10:51:18 +0200158 if(f12 == 0)
159 return 0;
160 else
Marc Kupietz1335dd72019-01-22 15:35:21 +0100161 return log2(o*o*o/e);
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100162 }
163
Marc Kupietzbbd236e2019-01-21 16:50:19 +0100164 // Evert, Stefan (2004): The Statistics of Word Cooccurrences: Word Pairs and Collocations. PhD dissertation, IMS, University of Stuttgart. Published in 2005, URN urn:nbn:de:bsz:93-opus-23714.
165 // Free PDF available from http://purl.org/stefan.evert/PUB/Evert2004phd.pdf
166 static inline double ca_ll(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) {
167 double
168 r1 = (double) w1 * window_size,
169 r2 = (double) n - r1,
170 c1 = w2,
171 c2 = n - c1,
172 o11 = w12, o12 = r1 - o11,
173 o21 = c1 - w12, o22 = r2 - o21,
174 e11 = r1 * c1 / n, e12 = r1 * c2 / n,
175 e21 = r2 * c1 / n, e22 = r2 * c2 / n;
176 return (2 * ( (o11>0? o11 * log(o11/e11):0) + (o12>0? o12 * log(o12/e12):0) + (o21>0? o21 * log(o21/e21):0) + (o22>0? o22 * log(o22/e22):0)));
177 }
Marc Kupietz4b799e92018-01-02 11:04:56 +0100178
Marc Kupietz41880452019-01-22 15:29:06 +0100179
180 static inline double ca_dice(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) {
181 double
182 r1 = (double) w1 * window_size,
183 c1 = w2;
184 return 2 * w12 / (c1+r1);
185 }
186
187 // Rychlý, Pavel (2008): <a href="http://www.fi.muni.cz/usr/sojka/download/raslan2008/13.pdf">A lexicographer-friendly association score.</a> In Proceedings of Recent Advances in Slavonic Natural Language Processing, RASLAN, 6–9.
188 static inline double ca_logdice(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) {
189 double
Marc Kupietz41880452019-01-22 15:29:06 +0100190 r1 = (double) w1 * window_size,
191 c1 = w2;
Marc Kupietzfdc0acf2019-01-31 12:42:58 +0100192 return 14 + log2(2 * w12 / (c1+r1));
Marc Kupietz41880452019-01-22 15:29:06 +0100193 }
194
Marc Kupietz4b799e92018-01-02 11:04:56 +0100195 class CountMergeOperator : public AssociativeMergeOperator {
196 public:
197 CountMergeOperator() {
198 mergeOperator_ = MergeOperators::CreateUInt64AddOperator();
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100199 }
200
Marc Kupietz4b799e92018-01-02 11:04:56 +0100201 virtual bool Merge(const Slice& key,
202 const Slice* existing_value,
203 const Slice& value,
204 std::string* new_value,
205 Logger* logger) const override {
206 assert(new_value->empty());
207 ++num_merge_operator_calls;
208 if (existing_value == nullptr) {
209 new_value->assign(value.data(), value.size());
210 return true;
211 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100212
Marc Kupietz4b799e92018-01-02 11:04:56 +0100213 return mergeOperator_->PartialMerge(
214 key,
215 *existing_value,
216 value,
217 new_value,
218 logger);
219 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100220
Marc Kupietz4b799e92018-01-02 11:04:56 +0100221 virtual const char* Name() const override {
222 return "UInt64AddOperator";
223 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100224
Marc Kupietz4b799e92018-01-02 11:04:56 +0100225 private:
226 std::shared_ptr<MergeOperator> mergeOperator_;
227 };
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100228
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100229
Marc Kupietz4b799e92018-01-02 11:04:56 +0100230 class CollocatorIterator : public Iterator {
231 private:
232 char prefixc[sizeof(uint64_t)];
233 Iterator *base_iterator_;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100234
235
Marc Kupietz4b799e92018-01-02 11:04:56 +0100236 public:
237 CollocatorIterator(Iterator* base_iterator)
238 : base_iterator_(base_iterator)
239 {}
240
Marc Kupietz4b799e92018-01-02 11:04:56 +0100241 void setPrefix(char *prefix) {
242 memcpy(prefixc, prefix, sizeof(uint64_t));
243 }
244
245 virtual void SeekToFirst() { base_iterator_->SeekToFirst(); }
246 virtual void SeekToLast() { base_iterator_->SeekToLast(); }
247 virtual void Seek(const rocksdb::Slice& s) { base_iterator_->Seek(s); }
248 virtual void Prev() { base_iterator_->Prev(); }
249 virtual void Next() { base_iterator_->Next(); }
250 virtual Slice key() const;
251 virtual Slice value() const;
252 virtual Status status() const;
253 virtual bool Valid() const;
254 bool isValid();
255 uint64_t intValue();
256 uint64_t intKey();
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100257
Marc Kupietz4b799e92018-01-02 11:04:56 +0100258 };
Marc Kupietz18375e12017-12-24 10:11:18 +0100259
Marc Kupietz4b799e92018-01-02 11:04:56 +0100260 // rocksdb::CollocatorIterator::CollocatorIterator(Iterator* base_iterator) {}
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100261
Marc Kupietz4b799e92018-01-02 11:04:56 +0100262 bool rocksdb::CollocatorIterator::Valid() const {
Marc Kupietz18375e12017-12-24 10:11:18 +0100263 return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3));
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100264 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100265
Marc Kupietz4b799e92018-01-02 11:04:56 +0100266 bool rocksdb::CollocatorIterator::isValid() {
267 return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3));
Marc Kupietzd31254c2018-01-20 21:29:30 +0100268 // return key().starts_with(std::string(prefixc,3));
Marc Kupietz4b799e92018-01-02 11:04:56 +0100269 }
Marc Kupietz18375e12017-12-24 10:11:18 +0100270
Marc Kupietz4b799e92018-01-02 11:04:56 +0100271 uint64_t rocksdb::CollocatorIterator::intKey() {
272 return DecodeFixed64(base_iterator_->key().data());
273 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100274
Marc Kupietz4b799e92018-01-02 11:04:56 +0100275 uint64_t rocksdb::CollocatorIterator::intValue() {
276 return DecodeFixed64(base_iterator_->value().data());
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100277 }
278
Marc Kupietz37359b12018-01-09 21:11:37 +0100279 class VocabEntry {
280 public:
281 string word;
282 uint64_t freq;
283 };
284
Marc Kupietz6aec7682018-01-10 09:47:48 +0100285 class CollocatorDB {
Marc Kupietz4b799e92018-01-02 11:04:56 +0100286 private:
287 WriteOptions merge_option_; // for merge
288 char _one[sizeof(uint64_t)];
289 Slice _one_slice;
Marc Kupietz37359b12018-01-09 21:11:37 +0100290 vector<VocabEntry> _vocab;
Marc Kupietz4ec51c12019-01-21 11:06:39 +0100291 uint64_t total = 0;
292 uint64_t sentences = 0;
Marc Kupietz8cf7e912019-01-21 17:05:23 +0100293 float avg_window_size = 8.0;
Marc Kupietz37359b12018-01-09 21:11:37 +0100294
Marc Kupietz4b799e92018-01-02 11:04:56 +0100295 protected:
296 std::shared_ptr<DB> db_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100297
Marc Kupietz4b799e92018-01-02 11:04:56 +0100298 WriteOptions put_option_;
299 ReadOptions get_option_;
300 WriteOptions delete_option_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100301
Marc Kupietz4b799e92018-01-02 11:04:56 +0100302 uint64_t default_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100303
Marc Kupietz4b799e92018-01-02 11:04:56 +0100304 std::shared_ptr<DB> OpenDb(const char *dbname);
Marc Kupietz6bb27762018-01-09 17:53:01 +0100305 std::shared_ptr<DB> OpenDbForRead(const char *dbname);
Marc Kupietz37359b12018-01-09 21:11:37 +0100306 void read_vocab(string fname);
307
Marc Kupietz4b799e92018-01-02 11:04:56 +0100308 public:
Marc Kupietz4a5e08a2018-06-05 11:07:11 +0200309 string getWord(uint32_t w1);
Marc Kupietz6aec7682018-01-10 09:47:48 +0100310 CollocatorDB(const char *db_name, bool read_only);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100311
Marc Kupietz6aec7682018-01-10 09:47:48 +0100312 // public interface of CollocatorDB.
Marc Kupietz4b799e92018-01-02 11:04:56 +0100313 // All four functions return false
314 // if the underlying level db operation failed.
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100315
Marc Kupietz4b799e92018-01-02 11:04:56 +0100316 // mapped to a levedb Put
317 bool set(const std::string& key, uint64_t value) {
318 // just treat the internal rep of int64 as the string
319 char buf[sizeof(value)];
320 EncodeFixed64(buf, value);
321 Slice slice(buf, sizeof(value));
322 auto s = db_->Put(put_option_, key, slice);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100323
Marc Kupietz4b799e92018-01-02 11:04:56 +0100324 if (s.ok()) {
325 return true;
326 } else {
327 std::cerr << s.ToString() << std::endl;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100328 return false;
329 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100330 }
Marc Kupietz4b799e92018-01-02 11:04:56 +0100331
332 DB *getDb() {
333 return db_.get();
334 }
335
336 // mapped to a rocksdb Delete
337 bool remove(const std::string& key) {
338 auto s = db_->Delete(delete_option_, key);
339
340 if (s.ok()) {
341 return true;
342 } else {
343 std::cerr << s.ToString() << std::endl;
344 return false;
345 }
346 }
347
348 // mapped to a rocksdb Get
349 bool get(const std::string& key, uint64_t* value) {
350 std::string str;
351 auto s = db_->Get(get_option_, key, &str);
352
353 if (s.IsNotFound()) {
354 // return default value if not found;
355 *value = default_;
356 return true;
357 } else if (s.ok()) {
358 // deserialization
359 if (str.size() != sizeof(uint64_t)) {
360 std::cerr << "value corruption\n";
361 return false;
362 }
363 *value = DecodeFixed64(&str[0]);
364 return true;
365 } else {
366 std::cerr << s.ToString() << std::endl;
367 return false;
368 }
369 }
370
371
372 uint64_t get(const uint32_t w1, const uint32_t w2, const int8_t dist) {
373 char encoded_key[sizeof(uint64_t)];
374 EncodeFixed64(encoded_key, encodeCollocation(w1,w2,dist));
375 uint64_t value = default_;
376 get(std::string(encoded_key, 8), &value);
377 return value;
378 }
379
380 virtual void inc(const std::string& key) {
381 db_->Merge(merge_option_, key, _one_slice);
382 }
383
384 void inc(const uint64_t key) {
385 char encoded_key[sizeof(uint64_t)];
386 EncodeFixed64(encoded_key, key);
387 db_->Merge(merge_option_, std::string(encoded_key, 8), _one_slice);
388 }
389
390 virtual void inc(const uint32_t w1, const uint32_t w2, const uint8_t dist);
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100391 void dump(uint32_t w1, uint32_t w2, int8_t dist);
Marc Kupietz37359b12018-01-09 21:11:37 +0100392 vector<Collocator> get_collocators(uint32_t w1);
Marc Kupietzbd966192018-10-13 14:14:37 +0200393 vector<Collocator> get_collocators(uint32_t w1, uint32_t max_w2);
Marc Kupietz8c62c372019-01-31 12:21:01 +0100394 void applyCAMeasures(const uint32_t w1, const uint32_t w2, uint64_t *sumWindow, const uint64_t sum, const int usedPositions, int true_window_size, rocksdb::Collocator *result);
395
Marc Kupietz3400aa52018-06-05 10:28:55 +0200396 void dumpSparseLlr(uint32_t w1, uint32_t min_cooccur);
Marc Kupietze9627152019-02-04 12:32:12 +0100397 string collocators2json(uint32_t w1, vector<Collocator> collocators);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100398
Marc Kupietz4b799e92018-01-02 11:04:56 +0100399 // mapped to a rocksdb Merge operation
400 virtual bool add(const std::string& key, uint64_t value) {
401 char encoded[sizeof(uint64_t)];
402 EncodeFixed64(encoded, value);
403 Slice slice(encoded, sizeof(uint64_t));
404 auto s = db_->Merge(merge_option_, key, slice);
405
406 if (s.ok()) {
407 return true;
408 } else {
409 std::cerr << s.ToString() << std::endl;
410 return false;
411 }
412 }
413
414 CollocatorIterator* SeekIterator(uint64_t w1, uint64_t w2, int8_t dist);
415 };
416
Marc Kupietz6aec7682018-01-10 09:47:48 +0100417 rocksdb::CollocatorDB::CollocatorDB(const char *db_name, bool read_only = false) {
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100418 // merge_option_.sync = true;
Marc Kupietz6bb27762018-01-09 17:53:01 +0100419 if(read_only)
420 db_ = OpenDbForRead(db_name);
421 else
422 db_ = OpenDb(db_name);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100423 assert(db_);
424 uint64_t one = 1;
425 EncodeFixed64(_one, one);
426 _one_slice = Slice(_one, sizeof(uint64_t));
427 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100428
Marc Kupietz6aec7682018-01-10 09:47:48 +0100429 void rocksdb::CollocatorDB::inc(const uint32_t w1, const uint32_t w2, const uint8_t dist) {
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100430 inc(encodeCollocation(w1, w2, dist));
431 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100432
Marc Kupietz6aec7682018-01-10 09:47:48 +0100433 void rocksdb::CollocatorDB::read_vocab(string fname) {
Marc Kupietz37359b12018-01-09 21:11:37 +0100434 char strbuf[2048];
435 uint64_t freq;
436 FILE *fin = fopen(fname.c_str(), "rb");
437 if (fin == NULL) {
438 cout << "Vocabulary file " << fname <<" not found\n";
439 exit(1);
440 }
441 uint64_t i = 0;
442 while(!feof(fin)) {
Marc Kupietzd31254c2018-01-20 21:29:30 +0100443 fscanf(fin, "%s %lu", strbuf, &freq);
Marc Kupietz37359b12018-01-09 21:11:37 +0100444 _vocab.push_back({strbuf, freq});
445 total += freq;
446 i++;
447 }
448 fclose(fin);
Marc Kupietz4ec51c12019-01-21 11:06:39 +0100449
450 char size_fname[256];
451 strcpy(size_fname, fname.c_str());
452 char *pos = strstr(size_fname, ".vocab");
453 if(pos) {
454 *pos=0;
455 strcat(size_fname, ".size");
456 FILE *fp = fopen(size_fname, "r");
457 if (fp != NULL) {
458 fscanf(fp, "%lu", &sentences);
459 fscanf(fp, "%lu", &total);
460 float sl = (float)total/(float)sentences;
461 float w = WINDOW_SIZE;
462 avg_window_size = ((sl > 2*w? (sl-2*w)*2*w: 0) + (double) w * (3*w -1)) / sl;
463 fprintf(stdout, "Size corrections found: corpus size: %lu tokens in %lu sentences, avg. sentence size: %f, avg. window size: %f\n", total, sentences, sl, avg_window_size);
464 fclose(fp);
465 } else {
466 std::cout << "size file " << size_fname << " not found\n";
467 }
468 } else {
469 std::cout << "cannot determine size file " << size_fname << "\n";
470 }
Marc Kupietz37359b12018-01-09 21:11:37 +0100471 }
472
Marc Kupietz6aec7682018-01-10 09:47:48 +0100473 std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDbForRead(const char *name) {
Marc Kupietz6bb27762018-01-09 17:53:01 +0100474 DB* db;
475 Options options;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100476 options.env->SetBackgroundThreads(4);
477 options.create_if_missing = true;
478 options.merge_operator = std::make_shared<CountMergeOperator>();
479 options.max_successive_merges = 0;
480 // options.prefix_extractor.reset(NewFixedPrefixTransform(8));
481 options.IncreaseParallelism();
482 options.OptimizeLevelStyleCompaction();
483 options.prefix_extractor.reset(NewFixedPrefixTransform(3));
Marc Kupietz37359b12018-01-09 21:11:37 +0100484 ostringstream dbname, vocabname;
Marc Kupietz6bb27762018-01-09 17:53:01 +0100485 dbname << name << ".rocksdb";
486 auto s = DB::OpenForReadOnly(options, dbname.str(), &db);
487 if (!s.ok()) {
488 std::cerr << s.ToString() << std::endl;
489 assert(false);
490 }
Marc Kupietz37359b12018-01-09 21:11:37 +0100491 vocabname << name << ".vocab";
492 read_vocab(vocabname.str());
Marc Kupietz6bb27762018-01-09 17:53:01 +0100493 return std::shared_ptr<DB>(db);
494 }
495
Marc Kupietz6aec7682018-01-10 09:47:48 +0100496 std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDb(const char *dbname) {
Marc Kupietz4b799e92018-01-02 11:04:56 +0100497 DB* db;
498 Options options;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100499
500
501 options.env->SetBackgroundThreads(4);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100502 options.create_if_missing = true;
503 options.merge_operator = std::make_shared<CountMergeOperator>();
504 options.max_successive_merges = 0;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100505 // options.prefix_extractor.reset(NewFixedPrefixTransform(8));
506 options.IncreaseParallelism();
507 options.OptimizeLevelStyleCompaction();
508 // options.max_write_buffer_number = 48;
509 // options.max_background_jobs = 48;
510 // options.allow_concurrent_memtable_write=true;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100511 // options.memtable_factory.reset(rocksdb::NewHashLinkListRepFactory(200000));
512 // options.enable_write_thread_adaptive_yield = 1;
513 // options.allow_concurrent_memtable_write = 1;
514 // options.memtable_factory.reset(new rocksdb::SkipListFactory);
515 // options.write_buffer_size = 1 << 22;
516 // options.allow_mmap_reads = true;
517 // options.allow_mmap_writes = true;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100518 // options.max_background_compactions = 40;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100519 // BlockBasedTableOptions table_options;
520 // table_options.filter_policy.reset(NewBloomFilterPolicy(24, false));
521 // options.bloom_locality = 1;
522 // std::shared_ptr<Cache> cache = NewLRUCache(512 * 1024 * 1024);
523 // table_options.block_cache = cache;
524 // options.table_factory.reset(NewBlockBasedTableFactory(table_options));
Marc Kupietz4b799e92018-01-02 11:04:56 +0100525 Status s;
526 // DestroyDB(dbname, Options());
527 s = DB::Open(options, dbname, &db);
528 if (!s.ok()) {
529 std::cerr << s.ToString() << std::endl;
530 assert(false);
531 }
532 return std::shared_ptr<DB>(db);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100533 }
534
Marc Kupietz6aec7682018-01-10 09:47:48 +0100535 CollocatorIterator* rocksdb::CollocatorDB::SeekIterator(uint64_t w1, uint64_t w2, int8_t dist) {
Marc Kupietz18375e12017-12-24 10:11:18 +0100536 ReadOptions options;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100537 options.prefix_same_as_start = true;
Marc Kupietz18375e12017-12-24 10:11:18 +0100538 char prefixc[sizeof(uint64_t)];
539 EncodeFixed64(prefixc, encodeCollocation(w1, w2, dist));
540 Iterator *it = db_->NewIterator(options);
541 CollocatorIterator *cit = new CollocatorIterator(it);
542 cit->Seek(std::string(prefixc,3));// it->Valid() && it->key().starts_with(std::string(prefixc,3)); it->Next()) {
543 cit->setPrefix(prefixc);
544 return cit;
545 }
546
Marc Kupietz6aec7682018-01-10 09:47:48 +0100547 void rocksdb::CollocatorDB::dump(uint32_t w1, uint32_t w2, int8_t dist) {
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100548 auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, w2, dist));
549 for (; it->isValid(); it->Next()) {
550 uint64_t value = it->intValue();
551 uint64_t key = it->intKey();
552 std::cout << "w1:" << W1(key) << ", w2:" << W2(key) << ", dist:" << (int32_t) DIST(key) << " - count:" << value << std::endl;
553 }
554 std::cout << "ready dumping\n";
555 }
556
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100557 bool sortByNpmi(const Collocator &lhs, const Collocator &rhs) { return lhs.npmi > rhs.npmi; }
558 bool sortByLfmd(const Collocator &lhs, const Collocator &rhs) { return lhs.lfmd > rhs.lfmd; }
Marc Kupietzd31254c2018-01-20 21:29:30 +0100559 bool sortByLlr(const Collocator &lhs, const Collocator &rhs) { return lhs.llr > rhs.llr; }
Marc Kupietz7e3dfde2019-01-22 16:27:33 +0100560 bool sortByLogDice(const Collocator &lhs, const Collocator &rhs) { return lhs.logdice > rhs.logdice; }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100561
Marc Kupietz8c62c372019-01-31 12:21:01 +0100562
563 void rocksdb::CollocatorDB::applyCAMeasures(const uint32_t w1, const uint32_t w2, uint64_t *sumWindow,
564 const uint64_t sum, const int usedPositions, int true_window_size, rocksdb::Collocator *result) {
565 uint64_t f1 = _vocab[w1].freq, f2 = _vocab[w2].freq;
566 double o = sum,
567 r1 = f1 * true_window_size,
568 c1 = f2,
569 e = r1 * c1 / total,
570 pmi = log2(o/e),
571 md = log2(o*o/e),
572 lfmd = log2(o*o*o/e),
573 llr = ca_ll(f1, f2, sum, total, true_window_size);
574 double ld = ca_logdice(f1, f2, sum, total, true_window_size);
575
576 int bestWindow = usedPositions;
577 double bestAF = ld;
578 double currentAF;
579 // if(f1<75000000)
580 //#pragma omp parallel for reduction(max:bestAF)
581 for (int bitmask=1; bitmask < (1 << (2*WINDOW_SIZE)); bitmask++) {
582 if((bitmask & usedPositions) == 0 || (bitmask & ~usedPositions) > 0) continue;
583 uint64_t currentWindowSum=0;
584 //#pragma omp parallel for reduction(+:currentWindowSum)
585 for (int pos=0; pos < 2*WINDOW_SIZE; pos++) {
586 if (((1<<pos) & bitmask & usedPositions) != 0)
587 currentWindowSum+=sumWindow[pos];
588 }
589 currentAF = ca_logdice(f1, f2, currentWindowSum, total, __builtin_popcount(bitmask));
590 if(currentAF > bestAF) {
591 bestAF = currentAF;
592 bestWindow = bitmask;
593 }
594 }
595
596 *result = {w2, f2, sum,
597 pmi, pmi / (-log2(o/total/true_window_size)),
598 llr, lfmd, md,
599 0,
600 0,
601 0,
602 0,
603 ca_dice(f1, f2, sum, total, true_window_size),
604 ld,
605 bestAF,
606 usedPositions,
607 bestWindow
608 };
609
610 }
611
Marc Kupietz75af60f2019-01-22 22:34:29 +0100612 std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1, uint32_t max_w2) {
613 std::vector<Collocator> collocators;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100614 uint64_t w2, last_w2 = 0xffffffffffffffff;
Marc Kupietz8c62c372019-01-31 12:21:01 +0100615 uint64_t maxv = 0, sum = 0;
616 uint64_t *sumWindow = (uint64_t*) malloc(sizeof(uint64_t)*2*WINDOW_SIZE);
617 memset(sumWindow, 0, sizeof(uint64_t)*2*WINDOW_SIZE);
Marc Kupietzade33222019-01-22 22:52:44 +0100618 int true_window_size = 1;
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100619 int usedPositions=0;
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100620
Marc Kupietz8c62c372019-01-31 12:21:01 +0100621#pragma omp parallel num_threads(40)
622#pragma omp single
Marc Kupietzd31254c2018-01-20 21:29:30 +0100623 for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) {
624 uint64_t value = it->intValue(),
625 key = it->intKey();
Marc Kupietzbd966192018-10-13 14:14:37 +0200626 if((w2 = W2(key)) > max_w2)
627 continue;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100628 if(last_w2 == 0xffffffffffffffff) last_w2 = w2;
629 if (w2 != last_w2) {
Marc Kupietz75af60f2019-01-22 22:34:29 +0100630 if (sum >= FREQUENCY_THRESHOLD) {
Marc Kupietz8c62c372019-01-31 12:21:01 +0100631 collocators.push_back({});
632 rocksdb::Collocator *result = &(collocators[collocators.size()-1]);
633#pragma omp task firstprivate(last_w2, sumWindow, sum, usedPositions, true_window_size) shared(w1, result) if(sum > 1000000)
634 {
635 // uint64_t *nsw = (uint64_t *)malloc(sizeof(uint64_t) * 2 *WINDOW_SIZE);
636 // memcpy(nsw, sumWindow, sizeof(uint64_t) * 2 *WINDOW_SIZE);
637 applyCAMeasures(w1, last_w2, sumWindow, sum, usedPositions, true_window_size, result);
638 // free(nsw);
Marc Kupietz75af60f2019-01-22 22:34:29 +0100639 }
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100640 }
Marc Kupietz75af60f2019-01-22 22:34:29 +0100641 memset(sumWindow, 0, 2*WINDOW_SIZE * sizeof(uint64_t));
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100642 usedPositions = 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0));
Marc Kupietz75af60f2019-01-22 22:34:29 +0100643 sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100644 last_w2 = w2;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100645 maxv = value;
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100646 sum = value;
Marc Kupietzade33222019-01-22 22:52:44 +0100647 true_window_size = 1;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100648 } else {
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100649 sum += value;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100650 if(value > maxv)
651 maxv = value;
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100652 usedPositions |= 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0));
Marc Kupietz75af60f2019-01-22 22:34:29 +0100653 sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value;
Marc Kupietzade33222019-01-22 22:52:44 +0100654 true_window_size++;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100655 }
656 }
657
Marc Kupietz8c62c372019-01-31 12:21:01 +0100658#pragma omp taskwait
659 sort(collocators.begin(), collocators.end(), sortByLogDice);
660
Marc Kupietzd31254c2018-01-20 21:29:30 +0100661 int i=0;
662 for (Collocator c : collocators) {
663 if(i++>10) break;
Marc Kupietz8c62c372019-01-31 12:21:01 +0100664 std::cout << "w1:" << _vocab[w1].word << ", w2: *" << _vocab[c.w2].word << "*"
Marc Kupietzd31254c2018-01-20 21:29:30 +0100665 << "\t f(w1):" << _vocab[w1].freq
666 << "\t f(w2):" << _vocab[c.w2].freq
Marc Kupietz51f93792018-01-25 08:51:01 +0100667 << "\t f(w1, w2):" << c.raw
Marc Kupietzd31254c2018-01-20 21:29:30 +0100668 << "\t pmi:" << c.pmi
669 << "\t npmi:" << c.npmi
670 << "\t llr:" << c.llr
Marc Kupietz8c62c372019-01-31 12:21:01 +0100671 << "\t md:" << c.md
Marc Kupietzd31254c2018-01-20 21:29:30 +0100672 << "\t lfmd:" << c.lfmd
Marc Kupietzd31254c2018-01-20 21:29:30 +0100673 << "\t total:" << total
674 << std::endl;
675 }
Marc Kupietz8c62c372019-01-31 12:21:01 +0100676
677 return collocators;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100678 }
679
Marc Kupietz8c62c372019-01-31 12:21:01 +0100680 std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1) {
Marc Kupietzbd966192018-10-13 14:14:37 +0200681 return get_collocators(w1, UINT32_MAX);
682 }
683
Marc Kupietz3400aa52018-06-05 10:28:55 +0200684 void rocksdb::CollocatorDB::dumpSparseLlr(uint32_t w1, uint32_t min_cooccur) {
685 std::vector<Collocator> collocators;
686 std::stringstream stream;
687 uint64_t w2, last_w2 = 0xffffffffffffffff;
688 uint64_t maxv = 0, total_w1 = 0;
689 bool first = true;
690 for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) {
691 uint64_t value = it->intValue(),
692 key = it->intKey();
693 w2 = W2(key);
694 total_w1 += value;
695 if(last_w2 == 0xffffffffffffffff) last_w2 = w2;
696 if (w2 != last_w2) {
697 if(maxv >= min_cooccur) {
Marc Kupietzbbd236e2019-01-21 16:50:19 +0100698 double llr = ca_ll(_vocab[w1].freq, _vocab[last_w2].freq, maxv, total, 1);
Marc Kupietz3400aa52018-06-05 10:28:55 +0200699 if(first)
700 first = false;
701 else
702 stream << " ";
703 stream << w2 << " " << llr;
704 }
705 last_w2 = w2;
706 maxv = value;
707 } else {
708 if(value > maxv)
709 maxv = value;
710 }
711 }
712 if(first)
713 stream << "1 0.0";
714 stream << "\n";
715 std::cout << stream.str();
716 }
717
Marc Kupietz4b799e92018-01-02 11:04:56 +0100718 rocksdb::Slice rocksdb::CollocatorIterator::key() const { return base_iterator_->key(); }
719 rocksdb::Slice rocksdb::CollocatorIterator::value() const { return base_iterator_->value(); }
720 rocksdb::Status rocksdb::CollocatorIterator::status() const { return base_iterator_->status(); }
721
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100722};
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100723
Marc Kupietz4a5e08a2018-06-05 11:07:11 +0200724string rocksdb::CollocatorDB::getWord(uint32_t w1) {
725 return _vocab[w1].word;
726}
727
Marc Kupietze9627152019-02-04 12:32:12 +0100728string rocksdb::CollocatorDB::collocators2json(uint32_t w1, vector<Collocator> collocators) {
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100729 ostringstream s;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100730 int i = 0;
Marc Kupietze9627152019-02-04 12:32:12 +0100731 s << " { \"f1\": " << _vocab[w1].freq << "," <<
732 "\"w1\":\"" << string(_vocab[w1].word) << "\", " <<
733 "\"N\": " << total << ", " <<
734 "\"collocates\": [";
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100735 bool first = true;
736 for (Collocator c : collocators) {
Marc Kupietzb999ec52018-06-05 11:20:46 +0200737 if(strncmp(_vocab[c.w2].word.c_str(), "quot", 4) == 0) continue;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100738 if (i++ > 200)
739 break;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100740 if(!first)
741 s << ",\n";
742 else
743 first = false;
744 s << "{"
Marc Kupietz7d9558f2019-01-22 16:26:50 +0100745 "\"word\":\"" << (string(_vocab[c.w2].word).compare("<num>") == 0? string("###") : string(_vocab[c.w2].word)) << "\"," <<
Marc Kupietzcc6c4592019-01-23 10:11:23 +0100746 "\"f2\":" << c.f2 << "," <<
Marc Kupietz51f93792018-01-25 08:51:01 +0100747 "\"f\":" << c.raw << "," <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100748 "\"npmi\":" << c.npmi << "," <<
Marc Kupietz41880452019-01-22 15:29:06 +0100749 "\"pmi\":" << c.pmi << "," <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100750 "\"llr\":" << c.llr << "," <<
751 "\"lfmd\":" << c.lfmd << "," <<
Marc Kupietz41880452019-01-22 15:29:06 +0100752 "\"md\":" << c.md << "," <<
753 "\"dice\":" << c.dice << "," <<
754 "\"ld\":" << c.logdice << "," <<
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100755 "\"llfmd\":" << c.left_lfmd << "," <<
756 "\"rlfmd\":" << c.right_lfmd << "," <<
757 "\"lnpmi\":" << c.left_npmi << "," <<
Marc Kupietz75af60f2019-01-22 22:34:29 +0100758 "\"rnpmi\":" << c.right_npmi << "," <<
Marc Kupietze9f58932019-01-24 15:12:59 +0100759 "\"af\":" << c.af << "," <<
760 "\"win\":" << c.window << "," <<
761 "\"afwin\":" << c.af_window <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100762 "}";
763 }
Marc Kupietze9627152019-02-04 12:32:12 +0100764 s << "]}\n";
Marc Kupietz8c62c372019-01-31 12:21:01 +0100765 std::cout << s.str();
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100766 return s.str();
767}
768
Marc Kupietz6aec7682018-01-10 09:47:48 +0100769typedef rocksdb::CollocatorDB COLLOCATORS;
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100770
771extern "C" {
Marc Kupietz6aec7682018-01-10 09:47:48 +0100772 COLLOCATORS *open_collocatordb_for_write(char *dbname) {
773 return new rocksdb::CollocatorDB(dbname, false);
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100774 }
775
Marc Kupietz6aec7682018-01-10 09:47:48 +0100776 COLLOCATORS *open_collocatordb(char *dbname) {
777 return new rocksdb::CollocatorDB(dbname, true);
Marc Kupietz6bb27762018-01-09 17:53:01 +0100778 }
779
Marc Kupietz6aec7682018-01-10 09:47:48 +0100780 void inc_collocator(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) {
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100781 db->inc(w1, w2, dist);
782 }
783
784 void dump_collocators(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) {
785 db->dump(w1, w2, dist);
786 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100787
Marc Kupietz37359b12018-01-09 21:11:37 +0100788 void get_collocators(COLLOCATORS *db, uint32_t w1) {
789 db->get_collocators(w1);
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100790 }
791
Marc Kupietzca3a52e2018-06-05 14:16:23 +0200792 const char *get_word(COLLOCATORS *db, uint32_t w) {
793 return db->getWord(w).c_str();
794 }
795
Marc Kupietz37359b12018-01-09 21:11:37 +0100796 const char *get_collocators_as_json(COLLOCATORS *db, uint32_t w1) {
Marc Kupietze9627152019-02-04 12:32:12 +0100797 return strdup(db->collocators2json(w1, db->get_collocators(w1)).c_str());
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100798 }
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100799}