blob: 34fb88baa5852cd875b114e9a8a7979dcc0c7095 [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
190 e = 0.5,
191 r1 = (double) w1 * window_size,
192 c1 = w2;
193 return 14 + log2(2 * (w12+e) / (c1+e+r1+e));
194 }
195
Marc Kupietz4b799e92018-01-02 11:04:56 +0100196 class CountMergeOperator : public AssociativeMergeOperator {
197 public:
198 CountMergeOperator() {
199 mergeOperator_ = MergeOperators::CreateUInt64AddOperator();
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100200 }
201
Marc Kupietz4b799e92018-01-02 11:04:56 +0100202 virtual bool Merge(const Slice& key,
203 const Slice* existing_value,
204 const Slice& value,
205 std::string* new_value,
206 Logger* logger) const override {
207 assert(new_value->empty());
208 ++num_merge_operator_calls;
209 if (existing_value == nullptr) {
210 new_value->assign(value.data(), value.size());
211 return true;
212 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100213
Marc Kupietz4b799e92018-01-02 11:04:56 +0100214 return mergeOperator_->PartialMerge(
215 key,
216 *existing_value,
217 value,
218 new_value,
219 logger);
220 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100221
Marc Kupietz4b799e92018-01-02 11:04:56 +0100222 virtual const char* Name() const override {
223 return "UInt64AddOperator";
224 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100225
Marc Kupietz4b799e92018-01-02 11:04:56 +0100226 private:
227 std::shared_ptr<MergeOperator> mergeOperator_;
228 };
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100229
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100230
Marc Kupietz4b799e92018-01-02 11:04:56 +0100231 class CollocatorIterator : public Iterator {
232 private:
233 char prefixc[sizeof(uint64_t)];
234 Iterator *base_iterator_;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100235
236
Marc Kupietz4b799e92018-01-02 11:04:56 +0100237 public:
238 CollocatorIterator(Iterator* base_iterator)
239 : base_iterator_(base_iterator)
240 {}
241
Marc Kupietz4b799e92018-01-02 11:04:56 +0100242 void setPrefix(char *prefix) {
243 memcpy(prefixc, prefix, sizeof(uint64_t));
244 }
245
246 virtual void SeekToFirst() { base_iterator_->SeekToFirst(); }
247 virtual void SeekToLast() { base_iterator_->SeekToLast(); }
248 virtual void Seek(const rocksdb::Slice& s) { base_iterator_->Seek(s); }
249 virtual void Prev() { base_iterator_->Prev(); }
250 virtual void Next() { base_iterator_->Next(); }
251 virtual Slice key() const;
252 virtual Slice value() const;
253 virtual Status status() const;
254 virtual bool Valid() const;
255 bool isValid();
256 uint64_t intValue();
257 uint64_t intKey();
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100258
Marc Kupietz4b799e92018-01-02 11:04:56 +0100259 };
Marc Kupietz18375e12017-12-24 10:11:18 +0100260
Marc Kupietz4b799e92018-01-02 11:04:56 +0100261 // rocksdb::CollocatorIterator::CollocatorIterator(Iterator* base_iterator) {}
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100262
Marc Kupietz4b799e92018-01-02 11:04:56 +0100263 bool rocksdb::CollocatorIterator::Valid() const {
Marc Kupietz18375e12017-12-24 10:11:18 +0100264 return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3));
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100265 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100266
Marc Kupietz4b799e92018-01-02 11:04:56 +0100267 bool rocksdb::CollocatorIterator::isValid() {
268 return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3));
Marc Kupietzd31254c2018-01-20 21:29:30 +0100269 // return key().starts_with(std::string(prefixc,3));
Marc Kupietz4b799e92018-01-02 11:04:56 +0100270 }
Marc Kupietz18375e12017-12-24 10:11:18 +0100271
Marc Kupietz4b799e92018-01-02 11:04:56 +0100272 uint64_t rocksdb::CollocatorIterator::intKey() {
273 return DecodeFixed64(base_iterator_->key().data());
274 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100275
Marc Kupietz4b799e92018-01-02 11:04:56 +0100276 uint64_t rocksdb::CollocatorIterator::intValue() {
277 return DecodeFixed64(base_iterator_->value().data());
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100278 }
279
Marc Kupietz37359b12018-01-09 21:11:37 +0100280 class VocabEntry {
281 public:
282 string word;
283 uint64_t freq;
284 };
285
Marc Kupietz6aec7682018-01-10 09:47:48 +0100286 class CollocatorDB {
Marc Kupietz4b799e92018-01-02 11:04:56 +0100287 private:
288 WriteOptions merge_option_; // for merge
289 char _one[sizeof(uint64_t)];
290 Slice _one_slice;
Marc Kupietz37359b12018-01-09 21:11:37 +0100291 vector<VocabEntry> _vocab;
Marc Kupietz4ec51c12019-01-21 11:06:39 +0100292 uint64_t total = 0;
293 uint64_t sentences = 0;
Marc Kupietz8cf7e912019-01-21 17:05:23 +0100294 float avg_window_size = 8.0;
Marc Kupietz37359b12018-01-09 21:11:37 +0100295
Marc Kupietz4b799e92018-01-02 11:04:56 +0100296 protected:
297 std::shared_ptr<DB> db_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100298
Marc Kupietz4b799e92018-01-02 11:04:56 +0100299 WriteOptions put_option_;
300 ReadOptions get_option_;
301 WriteOptions delete_option_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100302
Marc Kupietz4b799e92018-01-02 11:04:56 +0100303 uint64_t default_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100304
Marc Kupietz4b799e92018-01-02 11:04:56 +0100305 std::shared_ptr<DB> OpenDb(const char *dbname);
Marc Kupietz6bb27762018-01-09 17:53:01 +0100306 std::shared_ptr<DB> OpenDbForRead(const char *dbname);
Marc Kupietz37359b12018-01-09 21:11:37 +0100307 void read_vocab(string fname);
308
Marc Kupietz4b799e92018-01-02 11:04:56 +0100309 public:
Marc Kupietz4a5e08a2018-06-05 11:07:11 +0200310 string getWord(uint32_t w1);
Marc Kupietz6aec7682018-01-10 09:47:48 +0100311 CollocatorDB(const char *db_name, bool read_only);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100312
Marc Kupietz6aec7682018-01-10 09:47:48 +0100313 // public interface of CollocatorDB.
Marc Kupietz4b799e92018-01-02 11:04:56 +0100314 // All four functions return false
315 // if the underlying level db operation failed.
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100316
Marc Kupietz4b799e92018-01-02 11:04:56 +0100317 // mapped to a levedb Put
318 bool set(const std::string& key, uint64_t value) {
319 // just treat the internal rep of int64 as the string
320 char buf[sizeof(value)];
321 EncodeFixed64(buf, value);
322 Slice slice(buf, sizeof(value));
323 auto s = db_->Put(put_option_, key, slice);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100324
Marc Kupietz4b799e92018-01-02 11:04:56 +0100325 if (s.ok()) {
326 return true;
327 } else {
328 std::cerr << s.ToString() << std::endl;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100329 return false;
330 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100331 }
Marc Kupietz4b799e92018-01-02 11:04:56 +0100332
333 DB *getDb() {
334 return db_.get();
335 }
336
337 // mapped to a rocksdb Delete
338 bool remove(const std::string& key) {
339 auto s = db_->Delete(delete_option_, key);
340
341 if (s.ok()) {
342 return true;
343 } else {
344 std::cerr << s.ToString() << std::endl;
345 return false;
346 }
347 }
348
349 // mapped to a rocksdb Get
350 bool get(const std::string& key, uint64_t* value) {
351 std::string str;
352 auto s = db_->Get(get_option_, key, &str);
353
354 if (s.IsNotFound()) {
355 // return default value if not found;
356 *value = default_;
357 return true;
358 } else if (s.ok()) {
359 // deserialization
360 if (str.size() != sizeof(uint64_t)) {
361 std::cerr << "value corruption\n";
362 return false;
363 }
364 *value = DecodeFixed64(&str[0]);
365 return true;
366 } else {
367 std::cerr << s.ToString() << std::endl;
368 return false;
369 }
370 }
371
372
373 uint64_t get(const uint32_t w1, const uint32_t w2, const int8_t dist) {
374 char encoded_key[sizeof(uint64_t)];
375 EncodeFixed64(encoded_key, encodeCollocation(w1,w2,dist));
376 uint64_t value = default_;
377 get(std::string(encoded_key, 8), &value);
378 return value;
379 }
380
381 virtual void inc(const std::string& key) {
382 db_->Merge(merge_option_, key, _one_slice);
383 }
384
385 void inc(const uint64_t key) {
386 char encoded_key[sizeof(uint64_t)];
387 EncodeFixed64(encoded_key, key);
388 db_->Merge(merge_option_, std::string(encoded_key, 8), _one_slice);
389 }
390
391 virtual void inc(const uint32_t w1, const uint32_t w2, const uint8_t dist);
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100392 void dump(uint32_t w1, uint32_t w2, int8_t dist);
Marc Kupietz37359b12018-01-09 21:11:37 +0100393 vector<Collocator> get_collocators(uint32_t w1);
Marc Kupietzbd966192018-10-13 14:14:37 +0200394 vector<Collocator> get_collocators(uint32_t w1, uint32_t max_w2);
Marc Kupietz8c62c372019-01-31 12:21:01 +0100395 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);
396
Marc Kupietz3400aa52018-06-05 10:28:55 +0200397 void dumpSparseLlr(uint32_t w1, uint32_t min_cooccur);
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100398 string collocators2json(vector<Collocator> collocators);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100399
Marc Kupietz4b799e92018-01-02 11:04:56 +0100400 // mapped to a rocksdb Merge operation
401 virtual bool add(const std::string& key, uint64_t value) {
402 char encoded[sizeof(uint64_t)];
403 EncodeFixed64(encoded, value);
404 Slice slice(encoded, sizeof(uint64_t));
405 auto s = db_->Merge(merge_option_, key, slice);
406
407 if (s.ok()) {
408 return true;
409 } else {
410 std::cerr << s.ToString() << std::endl;
411 return false;
412 }
413 }
414
415 CollocatorIterator* SeekIterator(uint64_t w1, uint64_t w2, int8_t dist);
416 };
417
Marc Kupietz6aec7682018-01-10 09:47:48 +0100418 rocksdb::CollocatorDB::CollocatorDB(const char *db_name, bool read_only = false) {
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100419 // merge_option_.sync = true;
Marc Kupietz6bb27762018-01-09 17:53:01 +0100420 if(read_only)
421 db_ = OpenDbForRead(db_name);
422 else
423 db_ = OpenDb(db_name);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100424 assert(db_);
425 uint64_t one = 1;
426 EncodeFixed64(_one, one);
427 _one_slice = Slice(_one, sizeof(uint64_t));
428 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100429
Marc Kupietz6aec7682018-01-10 09:47:48 +0100430 void rocksdb::CollocatorDB::inc(const uint32_t w1, const uint32_t w2, const uint8_t dist) {
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100431 inc(encodeCollocation(w1, w2, dist));
432 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100433
Marc Kupietz6aec7682018-01-10 09:47:48 +0100434 void rocksdb::CollocatorDB::read_vocab(string fname) {
Marc Kupietz37359b12018-01-09 21:11:37 +0100435 char strbuf[2048];
436 uint64_t freq;
437 FILE *fin = fopen(fname.c_str(), "rb");
438 if (fin == NULL) {
439 cout << "Vocabulary file " << fname <<" not found\n";
440 exit(1);
441 }
442 uint64_t i = 0;
443 while(!feof(fin)) {
Marc Kupietzd31254c2018-01-20 21:29:30 +0100444 fscanf(fin, "%s %lu", strbuf, &freq);
Marc Kupietz37359b12018-01-09 21:11:37 +0100445 _vocab.push_back({strbuf, freq});
446 total += freq;
447 i++;
448 }
449 fclose(fin);
Marc Kupietz4ec51c12019-01-21 11:06:39 +0100450
451 char size_fname[256];
452 strcpy(size_fname, fname.c_str());
453 char *pos = strstr(size_fname, ".vocab");
454 if(pos) {
455 *pos=0;
456 strcat(size_fname, ".size");
457 FILE *fp = fopen(size_fname, "r");
458 if (fp != NULL) {
459 fscanf(fp, "%lu", &sentences);
460 fscanf(fp, "%lu", &total);
461 float sl = (float)total/(float)sentences;
462 float w = WINDOW_SIZE;
463 avg_window_size = ((sl > 2*w? (sl-2*w)*2*w: 0) + (double) w * (3*w -1)) / sl;
464 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);
465 fclose(fp);
466 } else {
467 std::cout << "size file " << size_fname << " not found\n";
468 }
469 } else {
470 std::cout << "cannot determine size file " << size_fname << "\n";
471 }
Marc Kupietz37359b12018-01-09 21:11:37 +0100472 }
473
Marc Kupietz6aec7682018-01-10 09:47:48 +0100474 std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDbForRead(const char *name) {
Marc Kupietz6bb27762018-01-09 17:53:01 +0100475 DB* db;
476 Options options;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100477 options.env->SetBackgroundThreads(4);
478 options.create_if_missing = true;
479 options.merge_operator = std::make_shared<CountMergeOperator>();
480 options.max_successive_merges = 0;
481 // options.prefix_extractor.reset(NewFixedPrefixTransform(8));
482 options.IncreaseParallelism();
483 options.OptimizeLevelStyleCompaction();
484 options.prefix_extractor.reset(NewFixedPrefixTransform(3));
Marc Kupietz37359b12018-01-09 21:11:37 +0100485 ostringstream dbname, vocabname;
Marc Kupietz6bb27762018-01-09 17:53:01 +0100486 dbname << name << ".rocksdb";
487 auto s = DB::OpenForReadOnly(options, dbname.str(), &db);
488 if (!s.ok()) {
489 std::cerr << s.ToString() << std::endl;
490 assert(false);
491 }
Marc Kupietz37359b12018-01-09 21:11:37 +0100492 vocabname << name << ".vocab";
493 read_vocab(vocabname.str());
Marc Kupietz6bb27762018-01-09 17:53:01 +0100494 return std::shared_ptr<DB>(db);
495 }
496
Marc Kupietz6aec7682018-01-10 09:47:48 +0100497 std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDb(const char *dbname) {
Marc Kupietz4b799e92018-01-02 11:04:56 +0100498 DB* db;
499 Options options;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100500
501
502 options.env->SetBackgroundThreads(4);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100503 options.create_if_missing = true;
504 options.merge_operator = std::make_shared<CountMergeOperator>();
505 options.max_successive_merges = 0;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100506 // options.prefix_extractor.reset(NewFixedPrefixTransform(8));
507 options.IncreaseParallelism();
508 options.OptimizeLevelStyleCompaction();
509 // options.max_write_buffer_number = 48;
510 // options.max_background_jobs = 48;
511 // options.allow_concurrent_memtable_write=true;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100512 // options.memtable_factory.reset(rocksdb::NewHashLinkListRepFactory(200000));
513 // options.enable_write_thread_adaptive_yield = 1;
514 // options.allow_concurrent_memtable_write = 1;
515 // options.memtable_factory.reset(new rocksdb::SkipListFactory);
516 // options.write_buffer_size = 1 << 22;
517 // options.allow_mmap_reads = true;
518 // options.allow_mmap_writes = true;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100519 // options.max_background_compactions = 40;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100520 // BlockBasedTableOptions table_options;
521 // table_options.filter_policy.reset(NewBloomFilterPolicy(24, false));
522 // options.bloom_locality = 1;
523 // std::shared_ptr<Cache> cache = NewLRUCache(512 * 1024 * 1024);
524 // table_options.block_cache = cache;
525 // options.table_factory.reset(NewBlockBasedTableFactory(table_options));
Marc Kupietz4b799e92018-01-02 11:04:56 +0100526 Status s;
527 // DestroyDB(dbname, Options());
528 s = DB::Open(options, dbname, &db);
529 if (!s.ok()) {
530 std::cerr << s.ToString() << std::endl;
531 assert(false);
532 }
533 return std::shared_ptr<DB>(db);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100534 }
535
Marc Kupietz6aec7682018-01-10 09:47:48 +0100536 CollocatorIterator* rocksdb::CollocatorDB::SeekIterator(uint64_t w1, uint64_t w2, int8_t dist) {
Marc Kupietz18375e12017-12-24 10:11:18 +0100537 ReadOptions options;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100538 options.prefix_same_as_start = true;
Marc Kupietz18375e12017-12-24 10:11:18 +0100539 char prefixc[sizeof(uint64_t)];
540 EncodeFixed64(prefixc, encodeCollocation(w1, w2, dist));
541 Iterator *it = db_->NewIterator(options);
542 CollocatorIterator *cit = new CollocatorIterator(it);
543 cit->Seek(std::string(prefixc,3));// it->Valid() && it->key().starts_with(std::string(prefixc,3)); it->Next()) {
544 cit->setPrefix(prefixc);
545 return cit;
546 }
547
Marc Kupietz6aec7682018-01-10 09:47:48 +0100548 void rocksdb::CollocatorDB::dump(uint32_t w1, uint32_t w2, int8_t dist) {
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100549 auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, w2, dist));
550 for (; it->isValid(); it->Next()) {
551 uint64_t value = it->intValue();
552 uint64_t key = it->intKey();
553 std::cout << "w1:" << W1(key) << ", w2:" << W2(key) << ", dist:" << (int32_t) DIST(key) << " - count:" << value << std::endl;
554 }
555 std::cout << "ready dumping\n";
556 }
557
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100558 bool sortByNpmi(const Collocator &lhs, const Collocator &rhs) { return lhs.npmi > rhs.npmi; }
559 bool sortByLfmd(const Collocator &lhs, const Collocator &rhs) { return lhs.lfmd > rhs.lfmd; }
Marc Kupietzd31254c2018-01-20 21:29:30 +0100560 bool sortByLlr(const Collocator &lhs, const Collocator &rhs) { return lhs.llr > rhs.llr; }
Marc Kupietz7e3dfde2019-01-22 16:27:33 +0100561 bool sortByLogDice(const Collocator &lhs, const Collocator &rhs) { return lhs.logdice > rhs.logdice; }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100562
Marc Kupietz8c62c372019-01-31 12:21:01 +0100563
564 void rocksdb::CollocatorDB::applyCAMeasures(const uint32_t w1, const uint32_t w2, uint64_t *sumWindow,
565 const uint64_t sum, const int usedPositions, int true_window_size, rocksdb::Collocator *result) {
566 uint64_t f1 = _vocab[w1].freq, f2 = _vocab[w2].freq;
567 double o = sum,
568 r1 = f1 * true_window_size,
569 c1 = f2,
570 e = r1 * c1 / total,
571 pmi = log2(o/e),
572 md = log2(o*o/e),
573 lfmd = log2(o*o*o/e),
574 llr = ca_ll(f1, f2, sum, total, true_window_size);
575 double ld = ca_logdice(f1, f2, sum, total, true_window_size);
576
577 int bestWindow = usedPositions;
578 double bestAF = ld;
579 double currentAF;
580 // if(f1<75000000)
581 //#pragma omp parallel for reduction(max:bestAF)
582 for (int bitmask=1; bitmask < (1 << (2*WINDOW_SIZE)); bitmask++) {
583 if((bitmask & usedPositions) == 0 || (bitmask & ~usedPositions) > 0) continue;
584 uint64_t currentWindowSum=0;
585 //#pragma omp parallel for reduction(+:currentWindowSum)
586 for (int pos=0; pos < 2*WINDOW_SIZE; pos++) {
587 if (((1<<pos) & bitmask & usedPositions) != 0)
588 currentWindowSum+=sumWindow[pos];
589 }
590 currentAF = ca_logdice(f1, f2, currentWindowSum, total, __builtin_popcount(bitmask));
591 if(currentAF > bestAF) {
592 bestAF = currentAF;
593 bestWindow = bitmask;
594 }
595 }
596
597 *result = {w2, f2, sum,
598 pmi, pmi / (-log2(o/total/true_window_size)),
599 llr, lfmd, md,
600 0,
601 0,
602 0,
603 0,
604 ca_dice(f1, f2, sum, total, true_window_size),
605 ld,
606 bestAF,
607 usedPositions,
608 bestWindow
609 };
610
611 }
612
Marc Kupietz75af60f2019-01-22 22:34:29 +0100613 std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1, uint32_t max_w2) {
614 std::vector<Collocator> collocators;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100615 uint64_t w2, last_w2 = 0xffffffffffffffff;
Marc Kupietz8c62c372019-01-31 12:21:01 +0100616 uint64_t maxv = 0, sum = 0;
617 uint64_t *sumWindow = (uint64_t*) malloc(sizeof(uint64_t)*2*WINDOW_SIZE);
618 memset(sumWindow, 0, sizeof(uint64_t)*2*WINDOW_SIZE);
Marc Kupietzade33222019-01-22 22:52:44 +0100619 int true_window_size = 1;
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100620 int usedPositions=0;
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100621
Marc Kupietz8c62c372019-01-31 12:21:01 +0100622#pragma omp parallel num_threads(40)
623#pragma omp single
Marc Kupietzd31254c2018-01-20 21:29:30 +0100624 for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) {
625 uint64_t value = it->intValue(),
626 key = it->intKey();
Marc Kupietzbd966192018-10-13 14:14:37 +0200627 if((w2 = W2(key)) > max_w2)
628 continue;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100629 if(last_w2 == 0xffffffffffffffff) last_w2 = w2;
630 if (w2 != last_w2) {
Marc Kupietz75af60f2019-01-22 22:34:29 +0100631 if (sum >= FREQUENCY_THRESHOLD) {
Marc Kupietz8c62c372019-01-31 12:21:01 +0100632 collocators.push_back({});
633 rocksdb::Collocator *result = &(collocators[collocators.size()-1]);
634#pragma omp task firstprivate(last_w2, sumWindow, sum, usedPositions, true_window_size) shared(w1, result) if(sum > 1000000)
635 {
636 // uint64_t *nsw = (uint64_t *)malloc(sizeof(uint64_t) * 2 *WINDOW_SIZE);
637 // memcpy(nsw, sumWindow, sizeof(uint64_t) * 2 *WINDOW_SIZE);
638 applyCAMeasures(w1, last_w2, sumWindow, sum, usedPositions, true_window_size, result);
639 // free(nsw);
Marc Kupietz75af60f2019-01-22 22:34:29 +0100640 }
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100641 }
Marc Kupietz75af60f2019-01-22 22:34:29 +0100642 memset(sumWindow, 0, 2*WINDOW_SIZE * sizeof(uint64_t));
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100643 usedPositions = 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0));
Marc Kupietz75af60f2019-01-22 22:34:29 +0100644 sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100645 last_w2 = w2;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100646 maxv = value;
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100647 sum = value;
Marc Kupietzade33222019-01-22 22:52:44 +0100648 true_window_size = 1;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100649 } else {
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100650 sum += value;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100651 if(value > maxv)
652 maxv = value;
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100653 usedPositions |= 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0));
Marc Kupietz75af60f2019-01-22 22:34:29 +0100654 sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value;
Marc Kupietzade33222019-01-22 22:52:44 +0100655 true_window_size++;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100656 }
657 }
658
Marc Kupietz8c62c372019-01-31 12:21:01 +0100659#pragma omp taskwait
660 sort(collocators.begin(), collocators.end(), sortByLogDice);
661
Marc Kupietzd31254c2018-01-20 21:29:30 +0100662 int i=0;
663 for (Collocator c : collocators) {
664 if(i++>10) break;
Marc Kupietz8c62c372019-01-31 12:21:01 +0100665 std::cout << "w1:" << _vocab[w1].word << ", w2: *" << _vocab[c.w2].word << "*"
Marc Kupietzd31254c2018-01-20 21:29:30 +0100666 << "\t f(w1):" << _vocab[w1].freq
667 << "\t f(w2):" << _vocab[c.w2].freq
Marc Kupietz51f93792018-01-25 08:51:01 +0100668 << "\t f(w1, w2):" << c.raw
Marc Kupietzd31254c2018-01-20 21:29:30 +0100669 << "\t pmi:" << c.pmi
670 << "\t npmi:" << c.npmi
671 << "\t llr:" << c.llr
Marc Kupietz8c62c372019-01-31 12:21:01 +0100672 << "\t md:" << c.md
Marc Kupietzd31254c2018-01-20 21:29:30 +0100673 << "\t lfmd:" << c.lfmd
Marc Kupietzd31254c2018-01-20 21:29:30 +0100674 << "\t total:" << total
675 << std::endl;
676 }
Marc Kupietz8c62c372019-01-31 12:21:01 +0100677
678 return collocators;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100679 }
680
Marc Kupietz8c62c372019-01-31 12:21:01 +0100681 std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1) {
Marc Kupietzbd966192018-10-13 14:14:37 +0200682 return get_collocators(w1, UINT32_MAX);
683 }
684
Marc Kupietz3400aa52018-06-05 10:28:55 +0200685 void rocksdb::CollocatorDB::dumpSparseLlr(uint32_t w1, uint32_t min_cooccur) {
686 std::vector<Collocator> collocators;
687 std::stringstream stream;
688 uint64_t w2, last_w2 = 0xffffffffffffffff;
689 uint64_t maxv = 0, total_w1 = 0;
690 bool first = true;
691 for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) {
692 uint64_t value = it->intValue(),
693 key = it->intKey();
694 w2 = W2(key);
695 total_w1 += value;
696 if(last_w2 == 0xffffffffffffffff) last_w2 = w2;
697 if (w2 != last_w2) {
698 if(maxv >= min_cooccur) {
Marc Kupietzbbd236e2019-01-21 16:50:19 +0100699 double llr = ca_ll(_vocab[w1].freq, _vocab[last_w2].freq, maxv, total, 1);
Marc Kupietz3400aa52018-06-05 10:28:55 +0200700 if(first)
701 first = false;
702 else
703 stream << " ";
704 stream << w2 << " " << llr;
705 }
706 last_w2 = w2;
707 maxv = value;
708 } else {
709 if(value > maxv)
710 maxv = value;
711 }
712 }
713 if(first)
714 stream << "1 0.0";
715 stream << "\n";
716 std::cout << stream.str();
717 }
718
Marc Kupietz4b799e92018-01-02 11:04:56 +0100719 rocksdb::Slice rocksdb::CollocatorIterator::key() const { return base_iterator_->key(); }
720 rocksdb::Slice rocksdb::CollocatorIterator::value() const { return base_iterator_->value(); }
721 rocksdb::Status rocksdb::CollocatorIterator::status() const { return base_iterator_->status(); }
722
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100723};
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100724
Marc Kupietz4a5e08a2018-06-05 11:07:11 +0200725string rocksdb::CollocatorDB::getWord(uint32_t w1) {
726 return _vocab[w1].word;
727}
728
Marc Kupietz6aec7682018-01-10 09:47:48 +0100729string rocksdb::CollocatorDB::collocators2json(vector<Collocator> collocators) {
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100730 ostringstream s;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100731 int i = 0;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100732 s << "[";
733 bool first = true;
734 for (Collocator c : collocators) {
Marc Kupietzb999ec52018-06-05 11:20:46 +0200735 if(strncmp(_vocab[c.w2].word.c_str(), "quot", 4) == 0) continue;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100736 if (i++ > 200)
737 break;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100738 if(!first)
739 s << ",\n";
740 else
741 first = false;
742 s << "{"
Marc Kupietz7d9558f2019-01-22 16:26:50 +0100743 "\"word\":\"" << (string(_vocab[c.w2].word).compare("<num>") == 0? string("###") : string(_vocab[c.w2].word)) << "\"," <<
Marc Kupietzcc6c4592019-01-23 10:11:23 +0100744 "\"f2\":" << c.f2 << "," <<
Marc Kupietz51f93792018-01-25 08:51:01 +0100745 "\"f\":" << c.raw << "," <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100746 "\"npmi\":" << c.npmi << "," <<
Marc Kupietz41880452019-01-22 15:29:06 +0100747 "\"pmi\":" << c.pmi << "," <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100748 "\"llr\":" << c.llr << "," <<
749 "\"lfmd\":" << c.lfmd << "," <<
Marc Kupietz41880452019-01-22 15:29:06 +0100750 "\"md\":" << c.md << "," <<
751 "\"dice\":" << c.dice << "," <<
752 "\"ld\":" << c.logdice << "," <<
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100753 "\"llfmd\":" << c.left_lfmd << "," <<
754 "\"rlfmd\":" << c.right_lfmd << "," <<
755 "\"lnpmi\":" << c.left_npmi << "," <<
Marc Kupietz75af60f2019-01-22 22:34:29 +0100756 "\"rnpmi\":" << c.right_npmi << "," <<
Marc Kupietze9f58932019-01-24 15:12:59 +0100757 "\"af\":" << c.af << "," <<
758 "\"win\":" << c.window << "," <<
759 "\"afwin\":" << c.af_window <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100760 "}";
761 }
762 s << "]\n";
Marc Kupietz8c62c372019-01-31 12:21:01 +0100763 std::cout << s.str();
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100764 return s.str();
765}
766
Marc Kupietz6aec7682018-01-10 09:47:48 +0100767typedef rocksdb::CollocatorDB COLLOCATORS;
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100768
769extern "C" {
Marc Kupietz6aec7682018-01-10 09:47:48 +0100770 COLLOCATORS *open_collocatordb_for_write(char *dbname) {
771 return new rocksdb::CollocatorDB(dbname, false);
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100772 }
773
Marc Kupietz6aec7682018-01-10 09:47:48 +0100774 COLLOCATORS *open_collocatordb(char *dbname) {
775 return new rocksdb::CollocatorDB(dbname, true);
Marc Kupietz6bb27762018-01-09 17:53:01 +0100776 }
777
Marc Kupietz6aec7682018-01-10 09:47:48 +0100778 void inc_collocator(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) {
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100779 db->inc(w1, w2, dist);
780 }
781
782 void dump_collocators(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) {
783 db->dump(w1, w2, dist);
784 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100785
Marc Kupietz37359b12018-01-09 21:11:37 +0100786 void get_collocators(COLLOCATORS *db, uint32_t w1) {
787 db->get_collocators(w1);
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100788 }
789
Marc Kupietzca3a52e2018-06-05 14:16:23 +0200790 const char *get_word(COLLOCATORS *db, uint32_t w) {
791 return db->getWord(w).c_str();
792 }
793
Marc Kupietz37359b12018-01-09 21:11:37 +0100794 const char *get_collocators_as_json(COLLOCATORS *db, uint32_t w1) {
795 return strdup(db->collocators2json(db->get_collocators(w1)).c_str());
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100796 }
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100797}