blob: cf5d339ed7041bf902b358beada0ea8b74affc53 [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 Kupietzc8ddf452018-01-07 21:33:12 +010025#define AVG_WINDOW_SIZE 7
Marc Kupietz06c9a9f2018-01-02 16:56:43 +010026
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 Kupietzc8ddf452018-01-07 21:33:12 +010047 class Collocator {
48 public:
49 uint64_t w2;
Marc Kupietz51f93792018-01-25 08:51:01 +010050 uint64_t raw;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010051 double pmi;
52 double npmi;
53 double llr;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010054 double lfmd;
55 double fpmi;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +010056 double left_lfmd;
57 double right_lfmd;
58 double left_npmi;
59 double right_npmi;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010060 };
61
Marc Kupietz28cc53e2017-12-23 17:24:55 +010062 size_t num_merge_operator_calls;
63 void resetNumMergeOperatorCalls() { num_merge_operator_calls = 0; }
Marc Kupietzc8ddf452018-01-07 21:33:12 +010064
Marc Kupietz28cc53e2017-12-23 17:24:55 +010065 size_t num_partial_merge_calls;
66 void resetNumPartialMergeCalls() { num_partial_merge_calls = 0; }
Marc Kupietz28cc53e2017-12-23 17:24:55 +010067
68
Marc Kupietz4b799e92018-01-02 11:04:56 +010069 inline void EncodeFixed64(char* buf, uint64_t value) {
70 if (! IS_BIG_ENDIAN) {
71 memcpy(buf, &value, sizeof(value));
72 } else {
73 buf[0] = value & 0xff;
74 buf[1] = (value >> 8) & 0xff;
75 buf[2] = (value >> 16) & 0xff;
76 buf[3] = (value >> 24) & 0xff;
77 buf[4] = (value >> 32) & 0xff;
78 buf[5] = (value >> 40) & 0xff;
79 buf[6] = (value >> 48) & 0xff;
80 buf[7] = (value >> 56) & 0xff;
81 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +010082 }
83
Marc Kupietz4b799e92018-01-02 11:04:56 +010084 inline uint32_t DecodeFixed32(const char* ptr) {
85 if (! IS_BIG_ENDIAN) {
86 // Load the raw bytes
87 uint32_t result;
88 memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load
89 return result;
90 } else {
91 return ((static_cast<uint32_t>(static_cast<unsigned char>(ptr[0])))
92 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[1])) << 8)
93 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[2])) << 16)
94 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[3])) << 24));
95 }
96 }
97
98 inline uint64_t DecodeFixed64(const char* ptr) {
99 if (! IS_BIG_ENDIAN) {
100 // Load the raw bytes
101 uint64_t result;
102 memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load
103 return result;
104 } else {
105 uint64_t lo = DecodeFixed32(ptr);
106 uint64_t hi = DecodeFixed32(ptr + 4);
107 return (hi << 32) | lo;
108 }
109 }
110
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100111 static inline double ca_pmi(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
112 return log2( total * ((double) f12) / (window_size * ((double) f1) * ((double)f2) ));
113 }
114
Marc Kupietzce0b8b02018-06-05 11:06:39 +0200115 // Bouma, Gerlof (2009): <a href="https://svn.spraakdata.gu.se/repos/gerlof/pub/www/Docs/npmi-pfd.pdf">
116 // Normalized (pointwise) mutual information in collocation extraction</a>. In Proceedings of GSCL.
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100117 static inline double ca_npmi(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
Marc Kupietz8caf9912018-06-05 10:51:18 +0200118 if(f12 == 0)
119 return -1.0;
120 else
121 return log2( total * ((double) f12) / (window_size * ((double) f1) * ((double)f2) )) / (-log2(((double) f12 / window_size / total)));
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100122 }
123
124 // Thanopoulos, A., Fakotakis, N., Kokkinakis, G.: Comparative evaluation of collocation extraction metrics.
125 // In: International Conference on Language Resources and Evaluation (LREC-2002). (2002) 620–625
126 // double md = log2(pow((double)max * window_size / total, 2) / (window_size * ((double)_vocab[w1].freq/total) * ((double)_vocab[last_w2].freq/total)));
127 static inline double ca_md(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
128 return log2((double)f12 * f12 / ((double) total * window_size * window_size * f1 * f2));
129 }
130
131 static inline double ca_lfmd(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
Marc Kupietz8caf9912018-06-05 10:51:18 +0200132 if(f12 == 0)
133 return 0;
134 else
135 return log2((double)f12 * f12 / ((double) total * window_size * window_size * f1 * f2)) + log2((double) f12 / window_size / total);
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100136 }
137
Marc Kupietz4b799e92018-01-02 11:04:56 +0100138
139 class CountMergeOperator : public AssociativeMergeOperator {
140 public:
141 CountMergeOperator() {
142 mergeOperator_ = MergeOperators::CreateUInt64AddOperator();
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100143 }
144
Marc Kupietz4b799e92018-01-02 11:04:56 +0100145 virtual bool Merge(const Slice& key,
146 const Slice* existing_value,
147 const Slice& value,
148 std::string* new_value,
149 Logger* logger) const override {
150 assert(new_value->empty());
151 ++num_merge_operator_calls;
152 if (existing_value == nullptr) {
153 new_value->assign(value.data(), value.size());
154 return true;
155 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100156
Marc Kupietz4b799e92018-01-02 11:04:56 +0100157 return mergeOperator_->PartialMerge(
158 key,
159 *existing_value,
160 value,
161 new_value,
162 logger);
163 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100164
Marc Kupietz4b799e92018-01-02 11:04:56 +0100165 virtual const char* Name() const override {
166 return "UInt64AddOperator";
167 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100168
Marc Kupietz4b799e92018-01-02 11:04:56 +0100169 private:
170 std::shared_ptr<MergeOperator> mergeOperator_;
171 };
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100172
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100173
Marc Kupietz4b799e92018-01-02 11:04:56 +0100174 class CollocatorIterator : public Iterator {
175 private:
176 char prefixc[sizeof(uint64_t)];
177 Iterator *base_iterator_;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100178
179
Marc Kupietz4b799e92018-01-02 11:04:56 +0100180 public:
181 CollocatorIterator(Iterator* base_iterator)
182 : base_iterator_(base_iterator)
183 {}
184
Marc Kupietz4b799e92018-01-02 11:04:56 +0100185 void setPrefix(char *prefix) {
186 memcpy(prefixc, prefix, sizeof(uint64_t));
187 }
188
189 virtual void SeekToFirst() { base_iterator_->SeekToFirst(); }
190 virtual void SeekToLast() { base_iterator_->SeekToLast(); }
191 virtual void Seek(const rocksdb::Slice& s) { base_iterator_->Seek(s); }
192 virtual void Prev() { base_iterator_->Prev(); }
193 virtual void Next() { base_iterator_->Next(); }
194 virtual Slice key() const;
195 virtual Slice value() const;
196 virtual Status status() const;
197 virtual bool Valid() const;
198 bool isValid();
199 uint64_t intValue();
200 uint64_t intKey();
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100201
Marc Kupietz4b799e92018-01-02 11:04:56 +0100202 };
Marc Kupietz18375e12017-12-24 10:11:18 +0100203
Marc Kupietz4b799e92018-01-02 11:04:56 +0100204 // rocksdb::CollocatorIterator::CollocatorIterator(Iterator* base_iterator) {}
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100205
Marc Kupietz4b799e92018-01-02 11:04:56 +0100206 bool rocksdb::CollocatorIterator::Valid() const {
Marc Kupietz18375e12017-12-24 10:11:18 +0100207 return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3));
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100208 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100209
Marc Kupietz4b799e92018-01-02 11:04:56 +0100210 bool rocksdb::CollocatorIterator::isValid() {
211 return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3));
Marc Kupietzd31254c2018-01-20 21:29:30 +0100212 // return key().starts_with(std::string(prefixc,3));
Marc Kupietz4b799e92018-01-02 11:04:56 +0100213 }
Marc Kupietz18375e12017-12-24 10:11:18 +0100214
Marc Kupietz4b799e92018-01-02 11:04:56 +0100215 uint64_t rocksdb::CollocatorIterator::intKey() {
216 return DecodeFixed64(base_iterator_->key().data());
217 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100218
Marc Kupietz4b799e92018-01-02 11:04:56 +0100219 uint64_t rocksdb::CollocatorIterator::intValue() {
220 return DecodeFixed64(base_iterator_->value().data());
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100221 }
222
Marc Kupietz37359b12018-01-09 21:11:37 +0100223 class VocabEntry {
224 public:
225 string word;
226 uint64_t freq;
227 };
228
Marc Kupietz6aec7682018-01-10 09:47:48 +0100229 class CollocatorDB {
Marc Kupietz4b799e92018-01-02 11:04:56 +0100230 private:
231 WriteOptions merge_option_; // for merge
232 char _one[sizeof(uint64_t)];
233 Slice _one_slice;
Marc Kupietz37359b12018-01-09 21:11:37 +0100234 vector<VocabEntry> _vocab;
235 uint64_t total;
236
Marc Kupietz4b799e92018-01-02 11:04:56 +0100237 protected:
238 std::shared_ptr<DB> db_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100239
Marc Kupietz4b799e92018-01-02 11:04:56 +0100240 WriteOptions put_option_;
241 ReadOptions get_option_;
242 WriteOptions delete_option_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100243
Marc Kupietz4b799e92018-01-02 11:04:56 +0100244 uint64_t default_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100245
Marc Kupietz4b799e92018-01-02 11:04:56 +0100246 std::shared_ptr<DB> OpenDb(const char *dbname);
Marc Kupietz6bb27762018-01-09 17:53:01 +0100247 std::shared_ptr<DB> OpenDbForRead(const char *dbname);
Marc Kupietz37359b12018-01-09 21:11:37 +0100248 void read_vocab(string fname);
249
Marc Kupietz4b799e92018-01-02 11:04:56 +0100250 public:
Marc Kupietz6aec7682018-01-10 09:47:48 +0100251 CollocatorDB(const char *db_name, bool read_only);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100252
Marc Kupietz6aec7682018-01-10 09:47:48 +0100253 // public interface of CollocatorDB.
Marc Kupietz4b799e92018-01-02 11:04:56 +0100254 // All four functions return false
255 // if the underlying level db operation failed.
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100256
Marc Kupietz4b799e92018-01-02 11:04:56 +0100257 // mapped to a levedb Put
258 bool set(const std::string& key, uint64_t value) {
259 // just treat the internal rep of int64 as the string
260 char buf[sizeof(value)];
261 EncodeFixed64(buf, value);
262 Slice slice(buf, sizeof(value));
263 auto s = db_->Put(put_option_, key, slice);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100264
Marc Kupietz4b799e92018-01-02 11:04:56 +0100265 if (s.ok()) {
266 return true;
267 } else {
268 std::cerr << s.ToString() << std::endl;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100269 return false;
270 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100271 }
Marc Kupietz4b799e92018-01-02 11:04:56 +0100272
273 DB *getDb() {
274 return db_.get();
275 }
276
277 // mapped to a rocksdb Delete
278 bool remove(const std::string& key) {
279 auto s = db_->Delete(delete_option_, key);
280
281 if (s.ok()) {
282 return true;
283 } else {
284 std::cerr << s.ToString() << std::endl;
285 return false;
286 }
287 }
288
289 // mapped to a rocksdb Get
290 bool get(const std::string& key, uint64_t* value) {
291 std::string str;
292 auto s = db_->Get(get_option_, key, &str);
293
294 if (s.IsNotFound()) {
295 // return default value if not found;
296 *value = default_;
297 return true;
298 } else if (s.ok()) {
299 // deserialization
300 if (str.size() != sizeof(uint64_t)) {
301 std::cerr << "value corruption\n";
302 return false;
303 }
304 *value = DecodeFixed64(&str[0]);
305 return true;
306 } else {
307 std::cerr << s.ToString() << std::endl;
308 return false;
309 }
310 }
311
312
313 uint64_t get(const uint32_t w1, const uint32_t w2, const int8_t dist) {
314 char encoded_key[sizeof(uint64_t)];
315 EncodeFixed64(encoded_key, encodeCollocation(w1,w2,dist));
316 uint64_t value = default_;
317 get(std::string(encoded_key, 8), &value);
318 return value;
319 }
320
321 virtual void inc(const std::string& key) {
322 db_->Merge(merge_option_, key, _one_slice);
323 }
324
325 void inc(const uint64_t key) {
326 char encoded_key[sizeof(uint64_t)];
327 EncodeFixed64(encoded_key, key);
328 db_->Merge(merge_option_, std::string(encoded_key, 8), _one_slice);
329 }
330
331 virtual void inc(const uint32_t w1, const uint32_t w2, const uint8_t dist);
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100332 void dump(uint32_t w1, uint32_t w2, int8_t dist);
Marc Kupietz37359b12018-01-09 21:11:37 +0100333 vector<Collocator> get_collocators(uint32_t w1);
Marc Kupietz3400aa52018-06-05 10:28:55 +0200334 void dumpSparseLlr(uint32_t w1, uint32_t min_cooccur);
Marc Kupietzd31254c2018-01-20 21:29:30 +0100335 vector<Collocator> get_collocators_avg(uint32_t w1);
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100336 string collocators2json(vector<Collocator> collocators);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100337
Marc Kupietz4b799e92018-01-02 11:04:56 +0100338 // mapped to a rocksdb Merge operation
339 virtual bool add(const std::string& key, uint64_t value) {
340 char encoded[sizeof(uint64_t)];
341 EncodeFixed64(encoded, value);
342 Slice slice(encoded, sizeof(uint64_t));
343 auto s = db_->Merge(merge_option_, key, slice);
344
345 if (s.ok()) {
346 return true;
347 } else {
348 std::cerr << s.ToString() << std::endl;
349 return false;
350 }
351 }
352
353 CollocatorIterator* SeekIterator(uint64_t w1, uint64_t w2, int8_t dist);
354 };
355
Marc Kupietz6aec7682018-01-10 09:47:48 +0100356 rocksdb::CollocatorDB::CollocatorDB(const char *db_name, bool read_only = false) {
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100357 // merge_option_.sync = true;
Marc Kupietz6bb27762018-01-09 17:53:01 +0100358 if(read_only)
359 db_ = OpenDbForRead(db_name);
360 else
361 db_ = OpenDb(db_name);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100362 assert(db_);
363 uint64_t one = 1;
364 EncodeFixed64(_one, one);
365 _one_slice = Slice(_one, sizeof(uint64_t));
366 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100367
Marc Kupietz6aec7682018-01-10 09:47:48 +0100368 void rocksdb::CollocatorDB::inc(const uint32_t w1, const uint32_t w2, const uint8_t dist) {
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100369 inc(encodeCollocation(w1, w2, dist));
370 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100371
Marc Kupietz6aec7682018-01-10 09:47:48 +0100372 void rocksdb::CollocatorDB::read_vocab(string fname) {
Marc Kupietz37359b12018-01-09 21:11:37 +0100373 char strbuf[2048];
374 uint64_t freq;
375 FILE *fin = fopen(fname.c_str(), "rb");
376 if (fin == NULL) {
377 cout << "Vocabulary file " << fname <<" not found\n";
378 exit(1);
379 }
380 uint64_t i = 0;
381 while(!feof(fin)) {
Marc Kupietzd31254c2018-01-20 21:29:30 +0100382 fscanf(fin, "%s %lu", strbuf, &freq);
Marc Kupietz37359b12018-01-09 21:11:37 +0100383 _vocab.push_back({strbuf, freq});
384 total += freq;
385 i++;
386 }
387 fclose(fin);
388 }
389
Marc Kupietz6aec7682018-01-10 09:47:48 +0100390 std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDbForRead(const char *name) {
Marc Kupietz6bb27762018-01-09 17:53:01 +0100391 DB* db;
392 Options options;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100393 options.env->SetBackgroundThreads(4);
394 options.create_if_missing = true;
395 options.merge_operator = std::make_shared<CountMergeOperator>();
396 options.max_successive_merges = 0;
397 // options.prefix_extractor.reset(NewFixedPrefixTransform(8));
398 options.IncreaseParallelism();
399 options.OptimizeLevelStyleCompaction();
400 options.prefix_extractor.reset(NewFixedPrefixTransform(3));
Marc Kupietz37359b12018-01-09 21:11:37 +0100401 ostringstream dbname, vocabname;
Marc Kupietz6bb27762018-01-09 17:53:01 +0100402 dbname << name << ".rocksdb";
403 auto s = DB::OpenForReadOnly(options, dbname.str(), &db);
404 if (!s.ok()) {
405 std::cerr << s.ToString() << std::endl;
406 assert(false);
407 }
Marc Kupietz37359b12018-01-09 21:11:37 +0100408 vocabname << name << ".vocab";
409 read_vocab(vocabname.str());
Marc Kupietz6bb27762018-01-09 17:53:01 +0100410 return std::shared_ptr<DB>(db);
411 }
412
Marc Kupietz6aec7682018-01-10 09:47:48 +0100413 std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDb(const char *dbname) {
Marc Kupietz4b799e92018-01-02 11:04:56 +0100414 DB* db;
415 Options options;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100416
417
418 options.env->SetBackgroundThreads(4);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100419 options.create_if_missing = true;
420 options.merge_operator = std::make_shared<CountMergeOperator>();
421 options.max_successive_merges = 0;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100422 // options.prefix_extractor.reset(NewFixedPrefixTransform(8));
423 options.IncreaseParallelism();
424 options.OptimizeLevelStyleCompaction();
425 // options.max_write_buffer_number = 48;
426 // options.max_background_jobs = 48;
427 // options.allow_concurrent_memtable_write=true;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100428 // options.memtable_factory.reset(rocksdb::NewHashLinkListRepFactory(200000));
429 // options.enable_write_thread_adaptive_yield = 1;
430 // options.allow_concurrent_memtable_write = 1;
431 // options.memtable_factory.reset(new rocksdb::SkipListFactory);
432 // options.write_buffer_size = 1 << 22;
433 // options.allow_mmap_reads = true;
434 // options.allow_mmap_writes = true;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100435 // options.max_background_compactions = 40;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100436 // BlockBasedTableOptions table_options;
437 // table_options.filter_policy.reset(NewBloomFilterPolicy(24, false));
438 // options.bloom_locality = 1;
439 // std::shared_ptr<Cache> cache = NewLRUCache(512 * 1024 * 1024);
440 // table_options.block_cache = cache;
441 // options.table_factory.reset(NewBlockBasedTableFactory(table_options));
Marc Kupietz4b799e92018-01-02 11:04:56 +0100442 Status s;
443 // DestroyDB(dbname, Options());
444 s = DB::Open(options, dbname, &db);
445 if (!s.ok()) {
446 std::cerr << s.ToString() << std::endl;
447 assert(false);
448 }
449 return std::shared_ptr<DB>(db);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100450 }
451
Marc Kupietz6aec7682018-01-10 09:47:48 +0100452 CollocatorIterator* rocksdb::CollocatorDB::SeekIterator(uint64_t w1, uint64_t w2, int8_t dist) {
Marc Kupietz18375e12017-12-24 10:11:18 +0100453 ReadOptions options;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100454 options.prefix_same_as_start = true;
Marc Kupietz18375e12017-12-24 10:11:18 +0100455 char prefixc[sizeof(uint64_t)];
456 EncodeFixed64(prefixc, encodeCollocation(w1, w2, dist));
457 Iterator *it = db_->NewIterator(options);
458 CollocatorIterator *cit = new CollocatorIterator(it);
459 cit->Seek(std::string(prefixc,3));// it->Valid() && it->key().starts_with(std::string(prefixc,3)); it->Next()) {
460 cit->setPrefix(prefixc);
461 return cit;
462 }
463
Marc Kupietz6aec7682018-01-10 09:47:48 +0100464 void rocksdb::CollocatorDB::dump(uint32_t w1, uint32_t w2, int8_t dist) {
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100465 auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, w2, dist));
466 for (; it->isValid(); it->Next()) {
467 uint64_t value = it->intValue();
468 uint64_t key = it->intKey();
469 std::cout << "w1:" << W1(key) << ", w2:" << W2(key) << ", dist:" << (int32_t) DIST(key) << " - count:" << value << std::endl;
470 }
471 std::cout << "ready dumping\n";
472 }
473
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100474 double calculateLLR(uint64_t f_X_, uint64_t uintN, uint64_t f_X_Y_, uint64_t f_Y_) {
475 double f_e_, f_o_;
476 double A=0.0, B=0.0, C=0.0, D=0.0, N=0.0;
477 double LLR=0.0, statVal=0.0, minusDiffCoeff=0.0;
478 double BlogB=0.0, ClogC=0.0;
479
480 N = (double)uintN;
481 A = (double)f_X_Y_;
482 B = (double)f_X_ -A;
483 C = (double)f_Y_ -A;
484 D = (double)N -A-B-C;;
485
486 if (B > 0.) BlogB = B*log(B);
487 if (C > 0.) ClogC = C*log(C);
488
489 if ((A>0.) && (D>0.) && (N>0.)) {
490 f_e_ = (double)f_X_ /(double)N;
491 f_o_ = (double)f_X_Y_/(double)f_Y_;
492
493 minusDiffCoeff =
494 ( f_X_==0 ? (double)((-1)*f_X_Y_) :
495 ( f_X_Y_==0 ? (double)((+1)*f_X_) :
496 (f_e_-f_o_)/(f_e_+f_o_)
497 )
498 );
499
500 /* log likelihood ratio */
501 LLR = 2*( A*log(A)
502 +BlogB
503 +ClogC
504 +D*log(D)
505 -(A+B)*log(A+B)
506 -(A+C)*log(A+C)
507 -(B+D)*log(B+D)
508 -(C+D)*log(C+D)
509 +N*log(N)
510 );
511 }
512 return(minusDiffCoeff > 0 ? 0 : (statVal=LLR));
513 }
514
515
516 bool sortByNpmi(const Collocator &lhs, const Collocator &rhs) { return lhs.npmi > rhs.npmi; }
517 bool sortByLfmd(const Collocator &lhs, const Collocator &rhs) { return lhs.lfmd > rhs.lfmd; }
Marc Kupietzd31254c2018-01-20 21:29:30 +0100518 bool sortByLlr(const Collocator &lhs, const Collocator &rhs) { return lhs.llr > rhs.llr; }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100519
Marc Kupietzd31254c2018-01-20 21:29:30 +0100520 std::vector<Collocator> rocksdb::CollocatorDB::get_collocators_avg(uint32_t w1) {
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100521 std::vector<Collocator> collocators;
522 uint64_t w2, last_w2 = 0xffffffffffffffff;
523 uint64_t sum = 0, total_w1 = 0;
524 for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) {
525 uint64_t value = it->intValue(),
526 key = it->intKey();
527 w2 = W2(key);
528 total_w1 += value;
529 if(last_w2 == 0xffffffffffffffff) last_w2 = w2;
530 if (w2 != last_w2) {
531 double pmi = log2( total * ((double) sum) /
Marc Kupietz37359b12018-01-09 21:11:37 +0100532 (AVG_WINDOW_SIZE * ((double)_vocab[w1].freq) * ((double)_vocab[last_w2].freq) ));
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100533 // Thanopoulos, A., Fakotakis, N., Kokkinakis, G.: Comparative evaluation of collocation extraction metrics. In: International Conference on Language Resources and Evaluation (LREC-2002). (2002) 620–625
Marc Kupietz37359b12018-01-09 21:11:37 +0100534 // double md = log2(pow((double)sum * AVG_WINDOW_SIZE / total, 2) / (AVG_WINDOW_SIZE * ((double)_vocab[w1].freq/total) * ((double)_vocab[last_w2].freq/total)));
535 double md = log2((double)sum * sum / ((double) total * AVG_WINDOW_SIZE * AVG_WINDOW_SIZE * _vocab[w1].freq * _vocab[last_w2].freq));
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100536 collocators.push_back ( {last_w2, sum, pmi, pmi / (-log2(((double) sum / AVG_WINDOW_SIZE / total))), /* normalize to [-1,1] */
Marc Kupietz37359b12018-01-09 21:11:37 +0100537 calculateLLR(_vocab[w1].freq, total, sum, _vocab[last_w2].freq), md, md + log2((double)sum / AVG_WINDOW_SIZE / total), pmi*sum/total/AVG_WINDOW_SIZE} );
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100538 last_w2 = w2;
539 sum = value;
540 } else {
541 sum += value;
542 }
543 }
544
545 sort(collocators.begin(), collocators.end(), sortByLfmd);
546
547 int i=0;
548 for (Collocator c : collocators) {
549 if(i++>10) break;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100550 std::cout << "dont call me w1:" << _vocab[w1].word << ", w2:" << _vocab[c.w2].word
Marc Kupietz37359b12018-01-09 21:11:37 +0100551 << "\t f(w1):" << _vocab[w1].freq
552 << "\t f(w2):" << _vocab[c.w2].freq
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100553 << "\t f(w1, x):" << total_w1
Marc Kupietz51f93792018-01-25 08:51:01 +0100554 << "\t f(w1, w2):" << c.raw
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100555 << "\t pmi:" << c.pmi
556 << "\t npmi:" << c.npmi
557 << "\t llr:" << c.llr
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100558 << "\t lfmd:" << c.lfmd
559 << "\t fpmi:" << c.fpmi
560 << "\t total:" << total
561 << std::endl;
562 }
563 return collocators;
564 }
565
Marc Kupietzd31254c2018-01-20 21:29:30 +0100566 std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1) {
567 std::vector<Collocator> collocators;
568 uint64_t w2, last_w2 = 0xffffffffffffffff;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100569 uint64_t maxv = 0, left = 0, right = 0, total_w1 = 0;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100570 const double window_size = 1;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100571 for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) {
572 uint64_t value = it->intValue(),
573 key = it->intKey();
574 w2 = W2(key);
575 total_w1 += value;
576 if(last_w2 == 0xffffffffffffffff) last_w2 = w2;
577 if (w2 != last_w2) {
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100578 double pmi = ca_pmi(_vocab[w1].freq, _vocab[last_w2].freq, maxv, total, window_size);
579 double lfmd = ca_lfmd(_vocab[w1].freq, _vocab[last_w2].freq, maxv, total, window_size);
580 double left_lfmd = ca_lfmd(_vocab[w1].freq, _vocab[last_w2].freq, left, total, 1);
581 double right_lfmd = ca_lfmd(_vocab[w1].freq, _vocab[last_w2].freq, right, total, 1);
582 double left_npmi = ca_npmi(_vocab[w1].freq, _vocab[last_w2].freq, left, total, 1);
583 double right_npmi = ca_npmi(_vocab[w1].freq, _vocab[last_w2].freq, right, total, 1);
584 collocators.push_back ( {last_w2, maxv, pmi, pmi / (-log2(((double) maxv / window_size / total))), /* normalize to [-1,1] */
585 calculateLLR(_vocab[w1].freq, total, maxv, _vocab[last_w2].freq), lfmd, pmi*maxv/total/window_size,
586 left_lfmd,
587 right_lfmd,
588 left_npmi,
589 right_npmi}
590 );
Marc Kupietzd31254c2018-01-20 21:29:30 +0100591 last_w2 = w2;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100592 maxv = value;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100593 } else {
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100594 if(value > maxv)
595 maxv = value;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100596 }
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100597 if(DIST(key) == -1)
598 left = value;
599 else if(DIST(key) == 1)
600 right = value;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100601 }
602
603 sort(collocators.begin(), collocators.end(), sortByLfmd);
604
605 int i=0;
606 for (Collocator c : collocators) {
607 if(i++>10) break;
608 std::cout << "w1:" << _vocab[w1].word << ", w2:" << _vocab[c.w2].word
609 << "\t f(w1):" << _vocab[w1].freq
610 << "\t f(w2):" << _vocab[c.w2].freq
611 << "\t f(w1, x):" << total_w1
Marc Kupietz51f93792018-01-25 08:51:01 +0100612 << "\t f(w1, w2):" << c.raw
Marc Kupietzd31254c2018-01-20 21:29:30 +0100613 << "\t pmi:" << c.pmi
614 << "\t npmi:" << c.npmi
615 << "\t llr:" << c.llr
Marc Kupietzd31254c2018-01-20 21:29:30 +0100616 << "\t lfmd:" << c.lfmd
617 << "\t fpmi:" << c.fpmi
618 << "\t total:" << total
619 << std::endl;
620 }
621 return collocators;
622 }
623
Marc Kupietz3400aa52018-06-05 10:28:55 +0200624 void rocksdb::CollocatorDB::dumpSparseLlr(uint32_t w1, uint32_t min_cooccur) {
625 std::vector<Collocator> collocators;
626 std::stringstream stream;
627 uint64_t w2, last_w2 = 0xffffffffffffffff;
628 uint64_t maxv = 0, total_w1 = 0;
629 bool first = true;
630 for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) {
631 uint64_t value = it->intValue(),
632 key = it->intKey();
633 w2 = W2(key);
634 total_w1 += value;
635 if(last_w2 == 0xffffffffffffffff) last_w2 = w2;
636 if (w2 != last_w2) {
637 if(maxv >= min_cooccur) {
638 double llr = calculateLLR(_vocab[w1].freq, total, maxv, _vocab[last_w2].freq);
639 if(first)
640 first = false;
641 else
642 stream << " ";
643 stream << w2 << " " << llr;
644 }
645 last_w2 = w2;
646 maxv = value;
647 } else {
648 if(value > maxv)
649 maxv = value;
650 }
651 }
652 if(first)
653 stream << "1 0.0";
654 stream << "\n";
655 std::cout << stream.str();
656 }
657
Marc Kupietz4b799e92018-01-02 11:04:56 +0100658 rocksdb::Slice rocksdb::CollocatorIterator::key() const { return base_iterator_->key(); }
659 rocksdb::Slice rocksdb::CollocatorIterator::value() const { return base_iterator_->value(); }
660 rocksdb::Status rocksdb::CollocatorIterator::status() const { return base_iterator_->status(); }
661
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100662};
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100663
Marc Kupietz6aec7682018-01-10 09:47:48 +0100664string rocksdb::CollocatorDB::collocators2json(vector<Collocator> collocators) {
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100665 ostringstream s;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100666 int i = 0;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100667 s << "[";
668 bool first = true;
669 for (Collocator c : collocators) {
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100670 if (i++ > 200)
671 break;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100672 if(!first)
673 s << ",\n";
674 else
675 first = false;
676 s << "{"
677 "\"word\":\"" << string(_vocab[c.w2].word) << "\"," <<
678 "\"rank\":" << c.w2 << "," <<
Marc Kupietz51f93792018-01-25 08:51:01 +0100679 "\"f\":" << c.raw << "," <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100680 "\"npmi\":" << c.npmi << "," <<
681 "\"llr\":" << c.llr << "," <<
682 "\"lfmd\":" << c.lfmd << "," <<
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100683 "\"fpmi\":" << c.fpmi << "," <<
684 "\"llfmd\":" << c.left_lfmd << "," <<
685 "\"rlfmd\":" << c.right_lfmd << "," <<
686 "\"lnpmi\":" << c.left_npmi << "," <<
687 "\"rnpmi\":" << c.right_npmi <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100688 "}";
689 }
690 s << "]\n";
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100691 // cout << s.str();
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100692 return s.str();
693}
694
Marc Kupietz6aec7682018-01-10 09:47:48 +0100695typedef rocksdb::CollocatorDB COLLOCATORS;
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100696
697extern "C" {
Marc Kupietz6aec7682018-01-10 09:47:48 +0100698 COLLOCATORS *open_collocatordb_for_write(char *dbname) {
699 return new rocksdb::CollocatorDB(dbname, false);
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100700 }
701
Marc Kupietz6aec7682018-01-10 09:47:48 +0100702 COLLOCATORS *open_collocatordb(char *dbname) {
703 return new rocksdb::CollocatorDB(dbname, true);
Marc Kupietz6bb27762018-01-09 17:53:01 +0100704 }
705
Marc Kupietz6aec7682018-01-10 09:47:48 +0100706 void inc_collocator(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) {
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100707 db->inc(w1, w2, dist);
708 }
709
710 void dump_collocators(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) {
711 db->dump(w1, w2, dist);
712 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100713
Marc Kupietz37359b12018-01-09 21:11:37 +0100714 void get_collocators(COLLOCATORS *db, uint32_t w1) {
715 db->get_collocators(w1);
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100716 }
717
Marc Kupietz37359b12018-01-09 21:11:37 +0100718 const char *get_collocators_as_json(COLLOCATORS *db, uint32_t w1) {
719 return strdup(db->collocators2json(db->get_collocators(w1)).c_str());
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100720 }
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100721}