Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 1 | #include <typeinfo> |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 2 | #define EXPORT __attribute__((visibility("visible"))) |
| 3 | #define IMPORT |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 4 | #include <assert.h> |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 5 | #include <inttypes.h> |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 6 | #include <memory> |
| 7 | #include <iostream> |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 8 | #include <algorithm> |
| 9 | #include <vector> |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 10 | #include <stdint.h> |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 11 | #include <string> |
| 12 | #include <sstream> // for ostringstream |
| 13 | #include <math.h> |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 14 | #include <rocksdb/cache.h> |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 15 | #include "rocksdb/comparator.h" |
| 16 | #include "rocksdb/db.h" |
| 17 | #include "rocksdb/env.h" |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 18 | #include "rocksdb/table.h" |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 19 | #include <rocksdb/merge_operator.h> |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 20 | #include <rocksdb/slice_transform.h> |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 21 | #include "rocksdb/utilities/db_ttl.h" |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 22 | #include "rocksdb/filter_policy.h" |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 23 | #include "merge_operators.h" |
| 24 | |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 25 | #define WINDOW_SIZE 5 |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 26 | #define FREQUENCY_THRESHOLD 5 |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 27 | #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 Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 29 | #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 Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 32 | |
| 33 | typedef 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 Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 43 | using namespace rocksdb; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 44 | using namespace std; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 45 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 46 | namespace rocksdb { |
Marc Kupietz | 4a5e08a | 2018-06-05 11:07:11 +0200 | [diff] [blame] | 47 | class Collocator { |
| 48 | public: |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 49 | uint64_t w2; |
Marc Kupietz | cc6c459 | 2019-01-23 10:11:23 +0100 | [diff] [blame] | 50 | uint64_t f2; |
Marc Kupietz | 51f9379 | 2018-01-25 08:51:01 +0100 | [diff] [blame] | 51 | uint64_t raw; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 52 | double pmi; |
| 53 | double npmi; |
| 54 | double llr; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 55 | double lfmd; |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 56 | double md; |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 57 | double left_lfmd; |
| 58 | double right_lfmd; |
| 59 | double left_npmi; |
| 60 | double right_npmi; |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 61 | double dice; |
| 62 | double logdice; |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 63 | double af; |
| 64 | int window; |
Marc Kupietz | e9f5893 | 2019-01-24 15:12:59 +0100 | [diff] [blame] | 65 | int af_window; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 66 | }; |
| 67 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 68 | size_t num_merge_operator_calls; |
| 69 | void resetNumMergeOperatorCalls() { num_merge_operator_calls = 0; } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 70 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 71 | size_t num_partial_merge_calls; |
| 72 | void resetNumPartialMergeCalls() { num_partial_merge_calls = 0; } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 73 | |
| 74 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 75 | 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 Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 88 | } |
| 89 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 90 | 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 Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 117 | static inline double ca_pmi(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) { |
Marc Kupietz | 1335dd7 | 2019-01-22 15:35:21 +0100 | [diff] [blame] | 118 | double |
| 119 | r1 = f1 * window_size, |
| 120 | c1 = f2, |
| 121 | e = r1 * c1 / total, |
| 122 | o = f12; |
| 123 | return log2(o/e); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 124 | } |
| 125 | |
Marc Kupietz | ce0b8b0 | 2018-06-05 11:06:39 +0200 | [diff] [blame] | 126 | // 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 Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 128 | static inline double ca_npmi(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) { |
Marc Kupietz | 1335dd7 | 2019-01-22 15:35:21 +0100 | [diff] [blame] | 129 | double |
| 130 | r1 = f1 * window_size, |
| 131 | c1 = f2, |
| 132 | e = r1 * c1 / total, |
| 133 | o = f12; |
| 134 | if(f12 < FREQUENCY_THRESHOLD) |
Marc Kupietz | 8caf991 | 2018-06-05 10:51:18 +0200 | [diff] [blame] | 135 | return -1.0; |
| 136 | else |
Marc Kupietz | 1335dd7 | 2019-01-22 15:35:21 +0100 | [diff] [blame] | 137 | return log2(o/e) / (-log2(o/total/window_size)); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 138 | } |
| 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 Kupietz | 1335dd7 | 2019-01-22 15:35:21 +0100 | [diff] [blame] | 144 | double |
| 145 | r1 = f1 * window_size, |
| 146 | c1 = f2, |
| 147 | e = r1 * c1 / total, |
| 148 | o = f12; |
| 149 | return log2(o*o/e); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | static inline double ca_lfmd(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) { |
Marc Kupietz | 1335dd7 | 2019-01-22 15:35:21 +0100 | [diff] [blame] | 153 | double |
| 154 | r1 = f1 * window_size, |
| 155 | c1 = f2, |
| 156 | e = r1 * c1 / total, |
| 157 | o = f12; |
Marc Kupietz | 8caf991 | 2018-06-05 10:51:18 +0200 | [diff] [blame] | 158 | if(f12 == 0) |
| 159 | return 0; |
| 160 | else |
Marc Kupietz | 1335dd7 | 2019-01-22 15:35:21 +0100 | [diff] [blame] | 161 | return log2(o*o*o/e); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 162 | } |
| 163 | |
Marc Kupietz | bbd236e | 2019-01-21 16:50:19 +0100 | [diff] [blame] | 164 | // 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 Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 178 | |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 179 | |
| 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 Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 196 | class CountMergeOperator : public AssociativeMergeOperator { |
| 197 | public: |
| 198 | CountMergeOperator() { |
| 199 | mergeOperator_ = MergeOperators::CreateUInt64AddOperator(); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 200 | } |
| 201 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 202 | 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 Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 213 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 214 | return mergeOperator_->PartialMerge( |
| 215 | key, |
| 216 | *existing_value, |
| 217 | value, |
| 218 | new_value, |
| 219 | logger); |
| 220 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 221 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 222 | virtual const char* Name() const override { |
| 223 | return "UInt64AddOperator"; |
| 224 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 225 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 226 | private: |
| 227 | std::shared_ptr<MergeOperator> mergeOperator_; |
| 228 | }; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 229 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 230 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 231 | class CollocatorIterator : public Iterator { |
| 232 | private: |
| 233 | char prefixc[sizeof(uint64_t)]; |
| 234 | Iterator *base_iterator_; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 235 | |
| 236 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 237 | public: |
| 238 | CollocatorIterator(Iterator* base_iterator) |
| 239 | : base_iterator_(base_iterator) |
| 240 | {} |
| 241 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 242 | 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 Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 258 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 259 | }; |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 260 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 261 | // rocksdb::CollocatorIterator::CollocatorIterator(Iterator* base_iterator) {} |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 262 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 263 | bool rocksdb::CollocatorIterator::Valid() const { |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 264 | return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3)); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 265 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 266 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 267 | bool rocksdb::CollocatorIterator::isValid() { |
| 268 | return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3)); |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 269 | // return key().starts_with(std::string(prefixc,3)); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 270 | } |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 271 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 272 | uint64_t rocksdb::CollocatorIterator::intKey() { |
| 273 | return DecodeFixed64(base_iterator_->key().data()); |
| 274 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 275 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 276 | uint64_t rocksdb::CollocatorIterator::intValue() { |
| 277 | return DecodeFixed64(base_iterator_->value().data()); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 278 | } |
| 279 | |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 280 | class VocabEntry { |
| 281 | public: |
| 282 | string word; |
| 283 | uint64_t freq; |
| 284 | }; |
| 285 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 286 | class CollocatorDB { |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 287 | private: |
| 288 | WriteOptions merge_option_; // for merge |
| 289 | char _one[sizeof(uint64_t)]; |
| 290 | Slice _one_slice; |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 291 | vector<VocabEntry> _vocab; |
Marc Kupietz | 4ec51c1 | 2019-01-21 11:06:39 +0100 | [diff] [blame] | 292 | uint64_t total = 0; |
| 293 | uint64_t sentences = 0; |
Marc Kupietz | 8cf7e91 | 2019-01-21 17:05:23 +0100 | [diff] [blame] | 294 | float avg_window_size = 8.0; |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 295 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 296 | protected: |
| 297 | std::shared_ptr<DB> db_; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 298 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 299 | WriteOptions put_option_; |
| 300 | ReadOptions get_option_; |
| 301 | WriteOptions delete_option_; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 302 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 303 | uint64_t default_; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 304 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 305 | std::shared_ptr<DB> OpenDb(const char *dbname); |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 306 | std::shared_ptr<DB> OpenDbForRead(const char *dbname); |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 307 | void read_vocab(string fname); |
| 308 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 309 | public: |
Marc Kupietz | 4a5e08a | 2018-06-05 11:07:11 +0200 | [diff] [blame] | 310 | string getWord(uint32_t w1); |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 311 | CollocatorDB(const char *db_name, bool read_only); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 312 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 313 | // public interface of CollocatorDB. |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 314 | // All four functions return false |
| 315 | // if the underlying level db operation failed. |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 316 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 317 | // 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 Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 324 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 325 | if (s.ok()) { |
| 326 | return true; |
| 327 | } else { |
| 328 | std::cerr << s.ToString() << std::endl; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 329 | return false; |
| 330 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 331 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 332 | |
| 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 Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 392 | void dump(uint32_t w1, uint32_t w2, int8_t dist); |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 393 | vector<Collocator> get_collocators(uint32_t w1); |
Marc Kupietz | bd96619 | 2018-10-13 14:14:37 +0200 | [diff] [blame] | 394 | vector<Collocator> get_collocators(uint32_t w1, uint32_t max_w2); |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 395 | void dumpSparseLlr(uint32_t w1, uint32_t min_cooccur); |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 396 | string collocators2json(vector<Collocator> collocators); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 397 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 398 | // mapped to a rocksdb Merge operation |
| 399 | virtual bool add(const std::string& key, uint64_t value) { |
| 400 | char encoded[sizeof(uint64_t)]; |
| 401 | EncodeFixed64(encoded, value); |
| 402 | Slice slice(encoded, sizeof(uint64_t)); |
| 403 | auto s = db_->Merge(merge_option_, key, slice); |
| 404 | |
| 405 | if (s.ok()) { |
| 406 | return true; |
| 407 | } else { |
| 408 | std::cerr << s.ToString() << std::endl; |
| 409 | return false; |
| 410 | } |
| 411 | } |
| 412 | |
| 413 | CollocatorIterator* SeekIterator(uint64_t w1, uint64_t w2, int8_t dist); |
| 414 | }; |
| 415 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 416 | rocksdb::CollocatorDB::CollocatorDB(const char *db_name, bool read_only = false) { |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 417 | // merge_option_.sync = true; |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 418 | if(read_only) |
| 419 | db_ = OpenDbForRead(db_name); |
| 420 | else |
| 421 | db_ = OpenDb(db_name); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 422 | assert(db_); |
| 423 | uint64_t one = 1; |
| 424 | EncodeFixed64(_one, one); |
| 425 | _one_slice = Slice(_one, sizeof(uint64_t)); |
| 426 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 427 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 428 | void rocksdb::CollocatorDB::inc(const uint32_t w1, const uint32_t w2, const uint8_t dist) { |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 429 | inc(encodeCollocation(w1, w2, dist)); |
| 430 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 431 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 432 | void rocksdb::CollocatorDB::read_vocab(string fname) { |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 433 | char strbuf[2048]; |
| 434 | uint64_t freq; |
| 435 | FILE *fin = fopen(fname.c_str(), "rb"); |
| 436 | if (fin == NULL) { |
| 437 | cout << "Vocabulary file " << fname <<" not found\n"; |
| 438 | exit(1); |
| 439 | } |
| 440 | uint64_t i = 0; |
| 441 | while(!feof(fin)) { |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 442 | fscanf(fin, "%s %lu", strbuf, &freq); |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 443 | _vocab.push_back({strbuf, freq}); |
| 444 | total += freq; |
| 445 | i++; |
| 446 | } |
| 447 | fclose(fin); |
Marc Kupietz | 4ec51c1 | 2019-01-21 11:06:39 +0100 | [diff] [blame] | 448 | |
| 449 | char size_fname[256]; |
| 450 | strcpy(size_fname, fname.c_str()); |
| 451 | char *pos = strstr(size_fname, ".vocab"); |
| 452 | if(pos) { |
| 453 | *pos=0; |
| 454 | strcat(size_fname, ".size"); |
| 455 | FILE *fp = fopen(size_fname, "r"); |
| 456 | if (fp != NULL) { |
| 457 | fscanf(fp, "%lu", &sentences); |
| 458 | fscanf(fp, "%lu", &total); |
| 459 | float sl = (float)total/(float)sentences; |
| 460 | float w = WINDOW_SIZE; |
| 461 | avg_window_size = ((sl > 2*w? (sl-2*w)*2*w: 0) + (double) w * (3*w -1)) / sl; |
| 462 | 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); |
| 463 | fclose(fp); |
| 464 | } else { |
| 465 | std::cout << "size file " << size_fname << " not found\n"; |
| 466 | } |
| 467 | } else { |
| 468 | std::cout << "cannot determine size file " << size_fname << "\n"; |
| 469 | } |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 470 | } |
| 471 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 472 | std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDbForRead(const char *name) { |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 473 | DB* db; |
| 474 | Options options; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 475 | options.env->SetBackgroundThreads(4); |
| 476 | options.create_if_missing = true; |
| 477 | options.merge_operator = std::make_shared<CountMergeOperator>(); |
| 478 | options.max_successive_merges = 0; |
| 479 | // options.prefix_extractor.reset(NewFixedPrefixTransform(8)); |
| 480 | options.IncreaseParallelism(); |
| 481 | options.OptimizeLevelStyleCompaction(); |
| 482 | options.prefix_extractor.reset(NewFixedPrefixTransform(3)); |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 483 | ostringstream dbname, vocabname; |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 484 | dbname << name << ".rocksdb"; |
| 485 | auto s = DB::OpenForReadOnly(options, dbname.str(), &db); |
| 486 | if (!s.ok()) { |
| 487 | std::cerr << s.ToString() << std::endl; |
| 488 | assert(false); |
| 489 | } |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 490 | vocabname << name << ".vocab"; |
| 491 | read_vocab(vocabname.str()); |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 492 | return std::shared_ptr<DB>(db); |
| 493 | } |
| 494 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 495 | std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDb(const char *dbname) { |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 496 | DB* db; |
| 497 | Options options; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 498 | |
| 499 | |
| 500 | options.env->SetBackgroundThreads(4); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 501 | options.create_if_missing = true; |
| 502 | options.merge_operator = std::make_shared<CountMergeOperator>(); |
| 503 | options.max_successive_merges = 0; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 504 | // options.prefix_extractor.reset(NewFixedPrefixTransform(8)); |
| 505 | options.IncreaseParallelism(); |
| 506 | options.OptimizeLevelStyleCompaction(); |
| 507 | // options.max_write_buffer_number = 48; |
| 508 | // options.max_background_jobs = 48; |
| 509 | // options.allow_concurrent_memtable_write=true; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 510 | // options.memtable_factory.reset(rocksdb::NewHashLinkListRepFactory(200000)); |
| 511 | // options.enable_write_thread_adaptive_yield = 1; |
| 512 | // options.allow_concurrent_memtable_write = 1; |
| 513 | // options.memtable_factory.reset(new rocksdb::SkipListFactory); |
| 514 | // options.write_buffer_size = 1 << 22; |
| 515 | // options.allow_mmap_reads = true; |
| 516 | // options.allow_mmap_writes = true; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 517 | // options.max_background_compactions = 40; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 518 | // BlockBasedTableOptions table_options; |
| 519 | // table_options.filter_policy.reset(NewBloomFilterPolicy(24, false)); |
| 520 | // options.bloom_locality = 1; |
| 521 | // std::shared_ptr<Cache> cache = NewLRUCache(512 * 1024 * 1024); |
| 522 | // table_options.block_cache = cache; |
| 523 | // options.table_factory.reset(NewBlockBasedTableFactory(table_options)); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 524 | Status s; |
| 525 | // DestroyDB(dbname, Options()); |
| 526 | s = DB::Open(options, dbname, &db); |
| 527 | if (!s.ok()) { |
| 528 | std::cerr << s.ToString() << std::endl; |
| 529 | assert(false); |
| 530 | } |
| 531 | return std::shared_ptr<DB>(db); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 532 | } |
| 533 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 534 | CollocatorIterator* rocksdb::CollocatorDB::SeekIterator(uint64_t w1, uint64_t w2, int8_t dist) { |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 535 | ReadOptions options; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 536 | options.prefix_same_as_start = true; |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 537 | char prefixc[sizeof(uint64_t)]; |
| 538 | EncodeFixed64(prefixc, encodeCollocation(w1, w2, dist)); |
| 539 | Iterator *it = db_->NewIterator(options); |
| 540 | CollocatorIterator *cit = new CollocatorIterator(it); |
| 541 | cit->Seek(std::string(prefixc,3));// it->Valid() && it->key().starts_with(std::string(prefixc,3)); it->Next()) { |
| 542 | cit->setPrefix(prefixc); |
| 543 | return cit; |
| 544 | } |
| 545 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 546 | void rocksdb::CollocatorDB::dump(uint32_t w1, uint32_t w2, int8_t dist) { |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 547 | auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, w2, dist)); |
| 548 | for (; it->isValid(); it->Next()) { |
| 549 | uint64_t value = it->intValue(); |
| 550 | uint64_t key = it->intKey(); |
| 551 | std::cout << "w1:" << W1(key) << ", w2:" << W2(key) << ", dist:" << (int32_t) DIST(key) << " - count:" << value << std::endl; |
| 552 | } |
| 553 | std::cout << "ready dumping\n"; |
| 554 | } |
| 555 | |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 556 | bool sortByNpmi(const Collocator &lhs, const Collocator &rhs) { return lhs.npmi > rhs.npmi; } |
| 557 | bool sortByLfmd(const Collocator &lhs, const Collocator &rhs) { return lhs.lfmd > rhs.lfmd; } |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 558 | bool sortByLlr(const Collocator &lhs, const Collocator &rhs) { return lhs.llr > rhs.llr; } |
Marc Kupietz | 7e3dfde | 2019-01-22 16:27:33 +0100 | [diff] [blame] | 559 | bool sortByLogDice(const Collocator &lhs, const Collocator &rhs) { return lhs.logdice > rhs.logdice; } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 560 | |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 561 | std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1, uint32_t max_w2) { |
| 562 | std::vector<Collocator> collocators; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 563 | uint64_t w2, last_w2 = 0xffffffffffffffff; |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 564 | uint64_t maxv = 0, sum = 0, left = 0, right = 0; |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 565 | uint64_t sumWindow[2*WINDOW_SIZE+1] = {}; |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 566 | int true_window_size = 1; |
Marc Kupietz | 39a4fd0 | 2019-01-23 10:18:43 +0100 | [diff] [blame] | 567 | int usedPositions=0; |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 568 | |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 569 | for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) { |
| 570 | uint64_t value = it->intValue(), |
| 571 | key = it->intKey(); |
Marc Kupietz | bd96619 | 2018-10-13 14:14:37 +0200 | [diff] [blame] | 572 | if((w2 = W2(key)) > max_w2) |
| 573 | continue; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 574 | if(last_w2 == 0xffffffffffffffff) last_w2 = w2; |
| 575 | if (w2 != last_w2) { |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 576 | if (sum >= FREQUENCY_THRESHOLD) { |
| 577 | uint64_t f1 = _vocab[w1].freq, f2 = _vocab[last_w2].freq; |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 578 | double o = sum, |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 579 | r1 = (double)_vocab[w1].freq * true_window_size, |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 580 | c1 = (double)_vocab[last_w2].freq, |
| 581 | e = r1 * c1 / total, |
| 582 | pmi = log2(o/e), |
| 583 | md = log2(o*o/e), |
| 584 | lfmd = log2(o*o*o/e), |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 585 | llr = ca_ll(f1, f2, sum, total, true_window_size); |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 586 | double left_lfmd = ca_lfmd(f1, f2, left, total, 1); |
| 587 | double right_lfmd = ca_lfmd(f1, f2, right, total, 1); |
| 588 | double left_npmi = ca_npmi(f1, f2, left, total, 1); |
| 589 | double right_npmi = ca_npmi(f1, f2, right, total, 1); |
Marc Kupietz | e9f5893 | 2019-01-24 15:12:59 +0100 | [diff] [blame] | 590 | double ld = ca_logdice(f1, f2, sum, total, true_window_size); |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 591 | |
Marc Kupietz | e9f5893 | 2019-01-24 15:12:59 +0100 | [diff] [blame] | 592 | int bestWindow = usedPositions; |
| 593 | double bestAF = ld; |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 594 | double currentAF; |
Marc Kupietz | 39a4fd0 | 2019-01-23 10:18:43 +0100 | [diff] [blame] | 595 | if(f1<75000000) |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 596 | for (int bitmask=1; bitmask < (1 << (2*WINDOW_SIZE)); bitmask++) { |
Marc Kupietz | 39a4fd0 | 2019-01-23 10:18:43 +0100 | [diff] [blame] | 597 | if((bitmask & usedPositions) == 0 || (bitmask & ~usedPositions) > 0) continue; |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 598 | uint64_t currentWindowSum=0; |
| 599 | for (int pos=0; pos < 2*WINDOW_SIZE; pos++) { |
Marc Kupietz | 39a4fd0 | 2019-01-23 10:18:43 +0100 | [diff] [blame] | 600 | if (((1<<pos) & bitmask & usedPositions) != 0) |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 601 | currentWindowSum+=sumWindow[pos]; |
| 602 | } |
| 603 | currentAF = ca_logdice(f1, f2, currentWindowSum, total, __builtin_popcount(bitmask)); |
| 604 | if(currentAF > bestAF) { |
| 605 | bestAF = currentAF; |
| 606 | bestWindow = bitmask; |
| 607 | } |
| 608 | } |
Marc Kupietz | cc6c459 | 2019-01-23 10:11:23 +0100 | [diff] [blame] | 609 | collocators.push_back ( {last_w2, f2, sum, |
| 610 | pmi, pmi / (-log2(o/total/true_window_size)), /* normalize to [-1,1] */ |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 611 | llr, lfmd, md, |
| 612 | left_lfmd, |
| 613 | right_lfmd, |
| 614 | left_npmi, |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 615 | right_npmi, |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 616 | ca_dice(f1, f2, sum, total, true_window_size), |
Marc Kupietz | e9f5893 | 2019-01-24 15:12:59 +0100 | [diff] [blame] | 617 | ld, |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 618 | bestAF, |
Marc Kupietz | e9f5893 | 2019-01-24 15:12:59 +0100 | [diff] [blame] | 619 | usedPositions, |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 620 | bestWindow |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 621 | } |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 622 | ); |
| 623 | } |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 624 | memset(sumWindow, 0, 2*WINDOW_SIZE * sizeof(uint64_t)); |
Marc Kupietz | 39a4fd0 | 2019-01-23 10:18:43 +0100 | [diff] [blame] | 625 | usedPositions = 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)); |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 626 | sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 627 | last_w2 = w2; |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 628 | maxv = value; |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 629 | sum = value; |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 630 | true_window_size = 1; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 631 | } else { |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 632 | sum += value; |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 633 | if(value > maxv) |
| 634 | maxv = value; |
Marc Kupietz | 39a4fd0 | 2019-01-23 10:18:43 +0100 | [diff] [blame] | 635 | usedPositions |= 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)); |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 636 | sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value; |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 637 | true_window_size++; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 638 | } |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 639 | if(DIST(key) == -1) |
| 640 | left = value; |
| 641 | else if(DIST(key) == 1) |
| 642 | right = value; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 643 | } |
| 644 | |
Marc Kupietz | d91e1d4 | 2019-01-22 16:18:32 +0100 | [diff] [blame] | 645 | sort(collocators.begin(), collocators.end(), sortByLogDice); |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 646 | |
Marc Kupietz | 0779a20 | 2018-06-05 11:13:35 +0200 | [diff] [blame] | 647 | /* |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 648 | int i=0; |
| 649 | for (Collocator c : collocators) { |
| 650 | if(i++>10) break; |
| 651 | std::cout << "w1:" << _vocab[w1].word << ", w2:" << _vocab[c.w2].word |
| 652 | << "\t f(w1):" << _vocab[w1].freq |
| 653 | << "\t f(w2):" << _vocab[c.w2].freq |
| 654 | << "\t f(w1, x):" << total_w1 |
Marc Kupietz | 51f9379 | 2018-01-25 08:51:01 +0100 | [diff] [blame] | 655 | << "\t f(w1, w2):" << c.raw |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 656 | << "\t pmi:" << c.pmi |
| 657 | << "\t npmi:" << c.npmi |
| 658 | << "\t llr:" << c.llr |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 659 | << "\t lfmd:" << c.lfmd |
| 660 | << "\t fpmi:" << c.fpmi |
| 661 | << "\t total:" << total |
| 662 | << std::endl; |
| 663 | } |
Marc Kupietz | 0779a20 | 2018-06-05 11:13:35 +0200 | [diff] [blame] | 664 | */ |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 665 | return collocators; |
| 666 | } |
| 667 | |
Marc Kupietz | bd96619 | 2018-10-13 14:14:37 +0200 | [diff] [blame] | 668 | std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1) { |
| 669 | return get_collocators(w1, UINT32_MAX); |
| 670 | } |
| 671 | |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 672 | void rocksdb::CollocatorDB::dumpSparseLlr(uint32_t w1, uint32_t min_cooccur) { |
| 673 | std::vector<Collocator> collocators; |
| 674 | std::stringstream stream; |
| 675 | uint64_t w2, last_w2 = 0xffffffffffffffff; |
| 676 | uint64_t maxv = 0, total_w1 = 0; |
| 677 | bool first = true; |
| 678 | for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) { |
| 679 | uint64_t value = it->intValue(), |
| 680 | key = it->intKey(); |
| 681 | w2 = W2(key); |
| 682 | total_w1 += value; |
| 683 | if(last_w2 == 0xffffffffffffffff) last_w2 = w2; |
| 684 | if (w2 != last_w2) { |
| 685 | if(maxv >= min_cooccur) { |
Marc Kupietz | bbd236e | 2019-01-21 16:50:19 +0100 | [diff] [blame] | 686 | double llr = ca_ll(_vocab[w1].freq, _vocab[last_w2].freq, maxv, total, 1); |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 687 | if(first) |
| 688 | first = false; |
| 689 | else |
| 690 | stream << " "; |
| 691 | stream << w2 << " " << llr; |
| 692 | } |
| 693 | last_w2 = w2; |
| 694 | maxv = value; |
| 695 | } else { |
| 696 | if(value > maxv) |
| 697 | maxv = value; |
| 698 | } |
| 699 | } |
| 700 | if(first) |
| 701 | stream << "1 0.0"; |
| 702 | stream << "\n"; |
| 703 | std::cout << stream.str(); |
| 704 | } |
| 705 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 706 | rocksdb::Slice rocksdb::CollocatorIterator::key() const { return base_iterator_->key(); } |
| 707 | rocksdb::Slice rocksdb::CollocatorIterator::value() const { return base_iterator_->value(); } |
| 708 | rocksdb::Status rocksdb::CollocatorIterator::status() const { return base_iterator_->status(); } |
| 709 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 710 | }; |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 711 | |
Marc Kupietz | 4a5e08a | 2018-06-05 11:07:11 +0200 | [diff] [blame] | 712 | string rocksdb::CollocatorDB::getWord(uint32_t w1) { |
| 713 | return _vocab[w1].word; |
| 714 | } |
| 715 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 716 | string rocksdb::CollocatorDB::collocators2json(vector<Collocator> collocators) { |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 717 | ostringstream s; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 718 | int i = 0; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 719 | s << "["; |
| 720 | bool first = true; |
| 721 | for (Collocator c : collocators) { |
Marc Kupietz | b999ec5 | 2018-06-05 11:20:46 +0200 | [diff] [blame] | 722 | if(strncmp(_vocab[c.w2].word.c_str(), "quot", 4) == 0) continue; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 723 | if (i++ > 200) |
| 724 | break; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 725 | if(!first) |
| 726 | s << ",\n"; |
| 727 | else |
| 728 | first = false; |
| 729 | s << "{" |
Marc Kupietz | 7d9558f | 2019-01-22 16:26:50 +0100 | [diff] [blame] | 730 | "\"word\":\"" << (string(_vocab[c.w2].word).compare("<num>") == 0? string("###") : string(_vocab[c.w2].word)) << "\"," << |
Marc Kupietz | cc6c459 | 2019-01-23 10:11:23 +0100 | [diff] [blame] | 731 | "\"f2\":" << c.f2 << "," << |
Marc Kupietz | 51f9379 | 2018-01-25 08:51:01 +0100 | [diff] [blame] | 732 | "\"f\":" << c.raw << "," << |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 733 | "\"npmi\":" << c.npmi << "," << |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 734 | "\"pmi\":" << c.pmi << "," << |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 735 | "\"llr\":" << c.llr << "," << |
| 736 | "\"lfmd\":" << c.lfmd << "," << |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 737 | "\"md\":" << c.md << "," << |
| 738 | "\"dice\":" << c.dice << "," << |
| 739 | "\"ld\":" << c.logdice << "," << |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 740 | "\"llfmd\":" << c.left_lfmd << "," << |
| 741 | "\"rlfmd\":" << c.right_lfmd << "," << |
| 742 | "\"lnpmi\":" << c.left_npmi << "," << |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 743 | "\"rnpmi\":" << c.right_npmi << "," << |
Marc Kupietz | e9f5893 | 2019-01-24 15:12:59 +0100 | [diff] [blame] | 744 | "\"af\":" << c.af << "," << |
| 745 | "\"win\":" << c.window << "," << |
| 746 | "\"afwin\":" << c.af_window << |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 747 | "}"; |
| 748 | } |
| 749 | s << "]\n"; |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 750 | // cout << s.str(); |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 751 | return s.str(); |
| 752 | } |
| 753 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 754 | typedef rocksdb::CollocatorDB COLLOCATORS; |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 755 | |
| 756 | extern "C" { |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 757 | COLLOCATORS *open_collocatordb_for_write(char *dbname) { |
| 758 | return new rocksdb::CollocatorDB(dbname, false); |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 759 | } |
| 760 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 761 | COLLOCATORS *open_collocatordb(char *dbname) { |
| 762 | return new rocksdb::CollocatorDB(dbname, true); |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 763 | } |
| 764 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 765 | void inc_collocator(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) { |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 766 | db->inc(w1, w2, dist); |
| 767 | } |
| 768 | |
| 769 | void dump_collocators(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) { |
| 770 | db->dump(w1, w2, dist); |
| 771 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 772 | |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 773 | void get_collocators(COLLOCATORS *db, uint32_t w1) { |
| 774 | db->get_collocators(w1); |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 775 | } |
| 776 | |
Marc Kupietz | ca3a52e | 2018-06-05 14:16:23 +0200 | [diff] [blame] | 777 | const char *get_word(COLLOCATORS *db, uint32_t w) { |
| 778 | return db->getWord(w).c_str(); |
| 779 | } |
| 780 | |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 781 | const char *get_collocators_as_json(COLLOCATORS *db, uint32_t w1) { |
| 782 | return strdup(db->collocators2json(db->get_collocators(w1)).c_str()); |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 783 | } |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 784 | } |