Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 1 | #define EXPORT __attribute__((visibility("visible"))) |
| 2 | #define IMPORT |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 3 | #include <assert.h> |
| 4 | #include <memory> |
| 5 | #include <iostream> |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 6 | #include <algorithm> |
| 7 | #include <vector> |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 8 | #include <stdint.h> |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 9 | #include <string> |
| 10 | #include <sstream> // for ostringstream |
| 11 | #include <math.h> |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 12 | #include <rocksdb/cache.h> |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 13 | #include "rocksdb/db.h" |
| 14 | #include "rocksdb/env.h" |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 15 | #include "rocksdb/table.h" |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 16 | #include <rocksdb/merge_operator.h> |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 17 | #include <rocksdb/slice_transform.h> |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 18 | #include "merge_operators.h" |
| 19 | |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 20 | #define WINDOW_SIZE 5 |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 21 | #define FREQUENCY_THRESHOLD 5 |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 22 | #define IS_BIG_ENDIAN (*(uint16_t *)"\0\xff" < 0x100) |
| 23 | #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] | 24 | #define W1(key) (uint64_t)(key & 0xffffff) |
| 25 | #define W2(key) (uint64_t)((key >> 24) & 0xffffff) |
| 26 | #define DIST(key) (int8_t)((uint64_t)((key >> 56) & 0xff)) |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 27 | |
| 28 | typedef struct { |
| 29 | uint64_t freq; |
| 30 | char *word; |
| 31 | } vocab_entry; |
| 32 | |
| 33 | // typedef struct Collocator { |
| 34 | // uint64_t w2; |
| 35 | // uint64_t sum; |
| 36 | // }; |
| 37 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 38 | using namespace rocksdb; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 39 | using namespace std; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 40 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 41 | namespace rocksdb { |
Marc Kupietz | 4a5e08a | 2018-06-05 11:07:11 +0200 | [diff] [blame] | 42 | class Collocator { |
| 43 | public: |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 44 | uint32_t w2; |
Marc Kupietz | cc6c459 | 2019-01-23 10:11:23 +0100 | [diff] [blame] | 45 | uint64_t f2; |
Marc Kupietz | 51f9379 | 2018-01-25 08:51:01 +0100 | [diff] [blame] | 46 | uint64_t raw; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 47 | double pmi; |
| 48 | double npmi; |
| 49 | double llr; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 50 | double lfmd; |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 51 | double md; |
Marc Kupietz | 0421d09 | 2021-03-13 18:05:14 +0100 | [diff] [blame^] | 52 | uint64_t left_raw; |
| 53 | uint64_t right_raw; |
Marc Kupietz | 6702e04 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 54 | double left_pmi; |
| 55 | double right_pmi; |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 56 | double dice; |
| 57 | double logdice; |
Marc Kupietz | 3203e4c | 2019-02-04 12:42:45 +0100 | [diff] [blame] | 58 | double ldaf; |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 59 | int window; |
Marc Kupietz | e9f5893 | 2019-01-24 15:12:59 +0100 | [diff] [blame] | 60 | int af_window; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 61 | }; |
| 62 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 63 | size_t num_merge_operator_calls; |
| 64 | void resetNumMergeOperatorCalls() { num_merge_operator_calls = 0; } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 65 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 66 | size_t num_partial_merge_calls; |
| 67 | void resetNumPartialMergeCalls() { num_partial_merge_calls = 0; } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 68 | |
| 69 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 70 | inline void EncodeFixed64(char* buf, uint64_t value) { |
| 71 | if (! IS_BIG_ENDIAN) { |
| 72 | memcpy(buf, &value, sizeof(value)); |
| 73 | } else { |
| 74 | buf[0] = value & 0xff; |
| 75 | buf[1] = (value >> 8) & 0xff; |
| 76 | buf[2] = (value >> 16) & 0xff; |
| 77 | buf[3] = (value >> 24) & 0xff; |
| 78 | buf[4] = (value >> 32) & 0xff; |
| 79 | buf[5] = (value >> 40) & 0xff; |
| 80 | buf[6] = (value >> 48) & 0xff; |
| 81 | buf[7] = (value >> 56) & 0xff; |
| 82 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 83 | } |
| 84 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 85 | inline uint32_t DecodeFixed32(const char* ptr) { |
| 86 | if (! IS_BIG_ENDIAN) { |
| 87 | // Load the raw bytes |
| 88 | uint32_t result; |
| 89 | memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load |
| 90 | return result; |
| 91 | } else { |
| 92 | return ((static_cast<uint32_t>(static_cast<unsigned char>(ptr[0]))) |
| 93 | | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[1])) << 8) |
| 94 | | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[2])) << 16) |
| 95 | | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[3])) << 24)); |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | inline uint64_t DecodeFixed64(const char* ptr) { |
| 100 | if (! IS_BIG_ENDIAN) { |
| 101 | // Load the raw bytes |
| 102 | uint64_t result; |
| 103 | memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load |
| 104 | return result; |
| 105 | } else { |
| 106 | uint64_t lo = DecodeFixed32(ptr); |
| 107 | uint64_t hi = DecodeFixed32(ptr + 4); |
| 108 | return (hi << 32) | lo; |
| 109 | } |
| 110 | } |
| 111 | |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 112 | 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] | 113 | double |
| 114 | r1 = f1 * window_size, |
| 115 | c1 = f2, |
| 116 | e = r1 * c1 / total, |
| 117 | o = f12; |
Marc Kupietz | f4a649a | 2021-02-26 09:18:01 +0100 | [diff] [blame] | 118 | if(f12 < FREQUENCY_THRESHOLD) |
| 119 | return -1.0; |
| 120 | else |
| 121 | return log2(o/e); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 122 | } |
| 123 | |
Marc Kupietz | ce0b8b0 | 2018-06-05 11:06:39 +0200 | [diff] [blame] | 124 | // Bouma, Gerlof (2009): <a href="https://svn.spraakdata.gu.se/repos/gerlof/pub/www/Docs/npmi-pfd.pdf"> |
| 125 | // Normalized (pointwise) mutual information in collocation extraction</a>. In Proceedings of GSCL. |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 126 | 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] | 127 | double |
| 128 | r1 = f1 * window_size, |
| 129 | c1 = f2, |
| 130 | e = r1 * c1 / total, |
| 131 | o = f12; |
| 132 | if(f12 < FREQUENCY_THRESHOLD) |
Marc Kupietz | 8caf991 | 2018-06-05 10:51:18 +0200 | [diff] [blame] | 133 | return -1.0; |
| 134 | else |
Marc Kupietz | 1335dd7 | 2019-01-22 15:35:21 +0100 | [diff] [blame] | 135 | return log2(o/e) / (-log2(o/total/window_size)); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | // Thanopoulos, A., Fakotakis, N., Kokkinakis, G.: Comparative evaluation of collocation extraction metrics. |
| 139 | // In: International Conference on Language Resources and Evaluation (LREC-2002). (2002) 620–625 |
| 140 | // double md = log2(pow((double)max * window_size / total, 2) / (window_size * ((double)_vocab[w1].freq/total) * ((double)_vocab[last_w2].freq/total))); |
| 141 | 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] | 142 | double |
| 143 | r1 = f1 * window_size, |
| 144 | c1 = f2, |
| 145 | e = r1 * c1 / total, |
| 146 | o = f12; |
| 147 | return log2(o*o/e); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | 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] | 151 | double |
| 152 | r1 = f1 * window_size, |
| 153 | c1 = f2, |
| 154 | e = r1 * c1 / total, |
| 155 | o = f12; |
Marc Kupietz | 8caf991 | 2018-06-05 10:51:18 +0200 | [diff] [blame] | 156 | if(f12 == 0) |
| 157 | return 0; |
| 158 | else |
Marc Kupietz | 1335dd7 | 2019-01-22 15:35:21 +0100 | [diff] [blame] | 159 | return log2(o*o*o/e); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 160 | } |
| 161 | |
Marc Kupietz | bbd236e | 2019-01-21 16:50:19 +0100 | [diff] [blame] | 162 | // 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. |
| 163 | // Free PDF available from http://purl.org/stefan.evert/PUB/Evert2004phd.pdf |
| 164 | static inline double ca_ll(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) { |
| 165 | double |
| 166 | r1 = (double) w1 * window_size, |
| 167 | r2 = (double) n - r1, |
| 168 | c1 = w2, |
| 169 | c2 = n - c1, |
| 170 | o11 = w12, o12 = r1 - o11, |
| 171 | o21 = c1 - w12, o22 = r2 - o21, |
| 172 | e11 = r1 * c1 / n, e12 = r1 * c2 / n, |
| 173 | e21 = r2 * c1 / n, e22 = r2 * c2 / n; |
| 174 | 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))); |
| 175 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 176 | |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 177 | |
| 178 | static inline double ca_dice(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) { |
| 179 | double |
| 180 | r1 = (double) w1 * window_size, |
| 181 | c1 = w2; |
| 182 | return 2 * w12 / (c1+r1); |
| 183 | } |
| 184 | |
| 185 | // 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. |
| 186 | static inline double ca_logdice(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) { |
| 187 | double |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 188 | r1 = (double) w1 * window_size, |
| 189 | c1 = w2; |
Marc Kupietz | fdc0acf | 2019-01-31 12:42:58 +0100 | [diff] [blame] | 190 | return 14 + log2(2 * w12 / (c1+r1)); |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 191 | } |
| 192 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 193 | class CountMergeOperator : public AssociativeMergeOperator { |
| 194 | public: |
| 195 | CountMergeOperator() { |
| 196 | mergeOperator_ = MergeOperators::CreateUInt64AddOperator(); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 197 | } |
| 198 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 199 | virtual bool Merge(const Slice& key, |
| 200 | const Slice* existing_value, |
| 201 | const Slice& value, |
| 202 | std::string* new_value, |
| 203 | Logger* logger) const override { |
| 204 | assert(new_value->empty()); |
| 205 | ++num_merge_operator_calls; |
| 206 | if (existing_value == nullptr) { |
| 207 | new_value->assign(value.data(), value.size()); |
| 208 | return true; |
| 209 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 210 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 211 | return mergeOperator_->PartialMerge( |
| 212 | key, |
| 213 | *existing_value, |
| 214 | value, |
| 215 | new_value, |
| 216 | logger); |
| 217 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 218 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 219 | virtual const char* Name() const override { |
| 220 | return "UInt64AddOperator"; |
| 221 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 222 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 223 | private: |
| 224 | std::shared_ptr<MergeOperator> mergeOperator_; |
| 225 | }; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 226 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 227 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 228 | class CollocatorIterator : public Iterator { |
| 229 | private: |
| 230 | char prefixc[sizeof(uint64_t)]; |
| 231 | Iterator *base_iterator_; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 232 | |
| 233 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 234 | public: |
| 235 | CollocatorIterator(Iterator* base_iterator) |
| 236 | : base_iterator_(base_iterator) |
| 237 | {} |
| 238 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 239 | void setPrefix(char *prefix) { |
| 240 | memcpy(prefixc, prefix, sizeof(uint64_t)); |
| 241 | } |
| 242 | |
| 243 | virtual void SeekToFirst() { base_iterator_->SeekToFirst(); } |
| 244 | virtual void SeekToLast() { base_iterator_->SeekToLast(); } |
| 245 | virtual void Seek(const rocksdb::Slice& s) { base_iterator_->Seek(s); } |
Marc Kupietz | 60d1051 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 246 | virtual void SeekForPrev(const rocksdb::Slice& s) { base_iterator_->SeekForPrev(s); } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 247 | virtual void Prev() { base_iterator_->Prev(); } |
| 248 | virtual void Next() { base_iterator_->Next(); } |
| 249 | virtual Slice key() const; |
| 250 | virtual Slice value() const; |
| 251 | virtual Status status() const; |
| 252 | virtual bool Valid() const; |
| 253 | bool isValid(); |
| 254 | uint64_t intValue(); |
| 255 | uint64_t intKey(); |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 256 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 257 | }; |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 258 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 259 | // rocksdb::CollocatorIterator::CollocatorIterator(Iterator* base_iterator) {} |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 260 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 261 | bool rocksdb::CollocatorIterator::Valid() const { |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 262 | return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3)); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 263 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 264 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 265 | bool rocksdb::CollocatorIterator::isValid() { |
| 266 | return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3)); |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 267 | // return key().starts_with(std::string(prefixc,3)); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 268 | } |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 269 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 270 | uint64_t rocksdb::CollocatorIterator::intKey() { |
| 271 | return DecodeFixed64(base_iterator_->key().data()); |
| 272 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 273 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 274 | uint64_t rocksdb::CollocatorIterator::intValue() { |
| 275 | return DecodeFixed64(base_iterator_->value().data()); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 276 | } |
| 277 | |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 278 | class VocabEntry { |
| 279 | public: |
| 280 | string word; |
| 281 | uint64_t freq; |
| 282 | }; |
| 283 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 284 | class CollocatorDB { |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 285 | private: |
| 286 | WriteOptions merge_option_; // for merge |
| 287 | char _one[sizeof(uint64_t)]; |
| 288 | Slice _one_slice; |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 289 | vector<VocabEntry> _vocab; |
Marc Kupietz | 4ec51c1 | 2019-01-21 11:06:39 +0100 | [diff] [blame] | 290 | uint64_t total = 0; |
| 291 | uint64_t sentences = 0; |
Marc Kupietz | 8cf7e91 | 2019-01-21 17:05:23 +0100 | [diff] [blame] | 292 | float avg_window_size = 8.0; |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 293 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 294 | protected: |
| 295 | std::shared_ptr<DB> db_; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 296 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 297 | WriteOptions put_option_; |
| 298 | ReadOptions get_option_; |
| 299 | WriteOptions delete_option_; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 300 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 301 | uint64_t default_; |
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 | std::shared_ptr<DB> OpenDb(const char *dbname); |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 304 | std::shared_ptr<DB> OpenDbForRead(const char *dbname); |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 305 | void read_vocab(string fname); |
| 306 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 307 | public: |
Marc Kupietz | 4a5e08a | 2018-06-05 11:07:11 +0200 | [diff] [blame] | 308 | string getWord(uint32_t w1); |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 309 | CollocatorDB(const char *db_name, bool read_only); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 310 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 311 | // public interface of CollocatorDB. |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 312 | // All four functions return false |
| 313 | // if the underlying level db operation failed. |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 314 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 315 | // mapped to a levedb Put |
| 316 | bool set(const std::string& key, uint64_t value) { |
| 317 | // just treat the internal rep of int64 as the string |
| 318 | char buf[sizeof(value)]; |
| 319 | EncodeFixed64(buf, value); |
| 320 | Slice slice(buf, sizeof(value)); |
| 321 | auto s = db_->Put(put_option_, key, slice); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 322 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 323 | if (s.ok()) { |
| 324 | return true; |
| 325 | } else { |
| 326 | std::cerr << s.ToString() << std::endl; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 327 | return false; |
| 328 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 329 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 330 | |
| 331 | DB *getDb() { |
| 332 | return db_.get(); |
| 333 | } |
| 334 | |
| 335 | // mapped to a rocksdb Delete |
| 336 | bool remove(const std::string& key) { |
| 337 | auto s = db_->Delete(delete_option_, key); |
| 338 | |
| 339 | if (s.ok()) { |
| 340 | return true; |
| 341 | } else { |
| 342 | std::cerr << s.ToString() << std::endl; |
| 343 | return false; |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | // mapped to a rocksdb Get |
| 348 | bool get(const std::string& key, uint64_t* value) { |
| 349 | std::string str; |
| 350 | auto s = db_->Get(get_option_, key, &str); |
| 351 | |
| 352 | if (s.IsNotFound()) { |
| 353 | // return default value if not found; |
| 354 | *value = default_; |
| 355 | return true; |
| 356 | } else if (s.ok()) { |
| 357 | // deserialization |
| 358 | if (str.size() != sizeof(uint64_t)) { |
| 359 | std::cerr << "value corruption\n"; |
| 360 | return false; |
| 361 | } |
| 362 | *value = DecodeFixed64(&str[0]); |
| 363 | return true; |
| 364 | } else { |
| 365 | std::cerr << s.ToString() << std::endl; |
| 366 | return false; |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | |
| 371 | uint64_t get(const uint32_t w1, const uint32_t w2, const int8_t dist) { |
| 372 | char encoded_key[sizeof(uint64_t)]; |
| 373 | EncodeFixed64(encoded_key, encodeCollocation(w1,w2,dist)); |
| 374 | uint64_t value = default_; |
| 375 | get(std::string(encoded_key, 8), &value); |
| 376 | return value; |
| 377 | } |
| 378 | |
| 379 | virtual void inc(const std::string& key) { |
| 380 | db_->Merge(merge_option_, key, _one_slice); |
| 381 | } |
| 382 | |
| 383 | void inc(const uint64_t key) { |
| 384 | char encoded_key[sizeof(uint64_t)]; |
| 385 | EncodeFixed64(encoded_key, key); |
| 386 | db_->Merge(merge_option_, std::string(encoded_key, 8), _one_slice); |
| 387 | } |
| 388 | |
| 389 | 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] | 390 | void dump(uint32_t w1, uint32_t w2, int8_t dist); |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 391 | vector<Collocator> get_collocators(uint32_t w1); |
Marc Kupietz | bd96619 | 2018-10-13 14:14:37 +0200 | [diff] [blame] | 392 | vector<Collocator> get_collocators(uint32_t w1, uint32_t max_w2); |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 393 | vector<Collocator> get_collocation_scores(uint32_t w1, uint32_t w2); |
| 394 | vector<Collocator> get_collocators(uint32_t w1, uint32_t min_w2, uint32_t max_w2); |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 395 | 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 Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 397 | void dumpSparseLlr(uint32_t w1, uint32_t min_cooccur); |
Marc Kupietz | e962715 | 2019-02-04 12:32:12 +0100 | [diff] [blame] | 398 | string collocators2json(uint32_t w1, vector<Collocator> collocators); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 399 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 400 | // 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 Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 418 | rocksdb::CollocatorDB::CollocatorDB(const char *db_name, bool read_only = false) { |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 419 | // merge_option_.sync = true; |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 420 | if(read_only) |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 421 | db_ = OpenDbForRead(strdup(db_name)); |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 422 | else |
| 423 | db_ = OpenDb(db_name); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 424 | assert(db_); |
| 425 | uint64_t one = 1; |
| 426 | EncodeFixed64(_one, one); |
| 427 | _one_slice = Slice(_one, sizeof(uint64_t)); |
| 428 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 429 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 430 | 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] | 431 | inc(encodeCollocation(w1, w2, dist)); |
| 432 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 433 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 434 | void rocksdb::CollocatorDB::read_vocab(string fname) { |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 435 | 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 Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 444 | fscanf(fin, "%s %lu", strbuf, &freq); |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 445 | _vocab.push_back({strbuf, freq}); |
| 446 | total += freq; |
| 447 | i++; |
| 448 | } |
| 449 | fclose(fin); |
Marc Kupietz | 4ec51c1 | 2019-01-21 11:06:39 +0100 | [diff] [blame] | 450 | |
| 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 Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 472 | } |
| 473 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 474 | std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDbForRead(const char *name) { |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 475 | DB* db; |
| 476 | Options options; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 477 | 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 Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 485 | ostringstream dbname, vocabname; |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 486 | 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 Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 492 | vocabname << name << ".vocab"; |
| 493 | read_vocab(vocabname.str()); |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 494 | return std::shared_ptr<DB>(db); |
| 495 | } |
| 496 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 497 | std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDb(const char *dbname) { |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 498 | DB* db; |
| 499 | Options options; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 500 | |
| 501 | |
| 502 | options.env->SetBackgroundThreads(4); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 503 | options.create_if_missing = true; |
| 504 | options.merge_operator = std::make_shared<CountMergeOperator>(); |
| 505 | options.max_successive_merges = 0; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 506 | // 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 Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 512 | // 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 Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 519 | // options.max_background_compactions = 40; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 520 | // 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 Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 526 | 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 Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 534 | } |
| 535 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 536 | 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] | 537 | ReadOptions options; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 538 | options.prefix_same_as_start = true; |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 539 | char prefixc[sizeof(uint64_t)]; |
| 540 | EncodeFixed64(prefixc, encodeCollocation(w1, w2, dist)); |
| 541 | Iterator *it = db_->NewIterator(options); |
| 542 | CollocatorIterator *cit = new CollocatorIterator(it); |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 543 | if (w2 > 0) |
| 544 | cit->Seek(std::string(prefixc, 6)); |
| 545 | else |
| 546 | cit->Seek(std::string(prefixc, 3)); |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 547 | cit->setPrefix(prefixc); |
| 548 | return cit; |
| 549 | } |
| 550 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 551 | 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] | 552 | auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, w2, dist)); |
| 553 | for (; it->isValid(); it->Next()) { |
| 554 | uint64_t value = it->intValue(); |
| 555 | uint64_t key = it->intKey(); |
| 556 | std::cout << "w1:" << W1(key) << ", w2:" << W2(key) << ", dist:" << (int32_t) DIST(key) << " - count:" << value << std::endl; |
| 557 | } |
| 558 | std::cout << "ready dumping\n"; |
| 559 | } |
| 560 | |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 561 | bool sortByNpmi(const Collocator &lhs, const Collocator &rhs) { return lhs.npmi > rhs.npmi; } |
| 562 | 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] | 563 | 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] | 564 | bool sortByLogDice(const Collocator &lhs, const Collocator &rhs) { return lhs.logdice > rhs.logdice; } |
Marc Kupietz | 3203e4c | 2019-02-04 12:42:45 +0100 | [diff] [blame] | 565 | bool sortByLogDiceAF(const Collocator &lhs, const Collocator &rhs) { return lhs.ldaf > rhs.ldaf; } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 566 | |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 567 | |
| 568 | void rocksdb::CollocatorDB::applyCAMeasures(const uint32_t w1, const uint32_t w2, uint64_t *sumWindow, |
| 569 | const uint64_t sum, const int usedPositions, int true_window_size, rocksdb::Collocator *result) { |
| 570 | uint64_t f1 = _vocab[w1].freq, f2 = _vocab[w2].freq; |
| 571 | double o = sum, |
| 572 | r1 = f1 * true_window_size, |
| 573 | c1 = f2, |
| 574 | e = r1 * c1 / total, |
| 575 | pmi = log2(o/e), |
| 576 | md = log2(o*o/e), |
| 577 | lfmd = log2(o*o*o/e), |
| 578 | llr = ca_ll(f1, f2, sum, total, true_window_size); |
| 579 | double ld = ca_logdice(f1, f2, sum, total, true_window_size); |
| 580 | |
| 581 | int bestWindow = usedPositions; |
| 582 | double bestAF = ld; |
| 583 | double currentAF; |
| 584 | // if(f1<75000000) |
| 585 | //#pragma omp parallel for reduction(max:bestAF) |
Marc Kupietz | 6d0fa54 | 2021-02-26 09:24:35 +0100 | [diff] [blame] | 586 | // #pragma omp target teams distribute parallel for reduction(max:bestAF) map(tofrom:bestAF,currentAF,bestWindow,usedPositions) |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 587 | for (int bitmask=1; bitmask < (1 << (2*WINDOW_SIZE)); bitmask++) { |
| 588 | if((bitmask & usedPositions) == 0 || (bitmask & ~usedPositions) > 0) continue; |
| 589 | uint64_t currentWindowSum=0; |
Marc Kupietz | 6d0fa54 | 2021-02-26 09:24:35 +0100 | [diff] [blame] | 590 | // #pragma omp target teams distribute parallel for reduction(+:currentWindowSum) map(tofrom:bitmask,usedPositions) |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 591 | for (int pos=0; pos < 2*WINDOW_SIZE; pos++) { |
| 592 | if (((1<<pos) & bitmask & usedPositions) != 0) |
| 593 | currentWindowSum+=sumWindow[pos]; |
| 594 | } |
| 595 | currentAF = ca_logdice(f1, f2, currentWindowSum, total, __builtin_popcount(bitmask)); |
| 596 | if(currentAF > bestAF) { |
| 597 | bestAF = currentAF; |
| 598 | bestWindow = bitmask; |
| 599 | } |
| 600 | } |
| 601 | |
Marc Kupietz | 0421d09 | 2021-03-13 18:05:14 +0100 | [diff] [blame^] | 602 | *result = {w2, |
| 603 | f2, |
| 604 | sum, |
| 605 | pmi, |
| 606 | pmi / (-log2(o/total/true_window_size)), |
| 607 | llr, |
| 608 | lfmd, |
| 609 | md, |
| 610 | sumWindow[WINDOW_SIZE], |
| 611 | sumWindow[WINDOW_SIZE-1], |
Marc Kupietz | 6d9221d | 2021-02-26 09:34:40 +0100 | [diff] [blame] | 612 | ca_pmi(f1, f2, sumWindow[WINDOW_SIZE], total, 1), |
| 613 | ca_pmi(f1, f2, sumWindow[WINDOW_SIZE-1], total, 1), |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 614 | ca_dice(f1, f2, sum, total, true_window_size), |
| 615 | ld, |
| 616 | bestAF, |
| 617 | usedPositions, |
| 618 | bestWindow |
| 619 | }; |
| 620 | |
| 621 | } |
| 622 | |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 623 | std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1, uint32_t min_w2, uint32_t max_w2) { |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 624 | std::vector<Collocator> collocators; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 625 | uint64_t w2, last_w2 = 0xffffffffffffffff; |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 626 | uint64_t maxv = 0, sum = 0; |
| 627 | uint64_t *sumWindow = (uint64_t*) malloc(sizeof(uint64_t)*2*WINDOW_SIZE); |
| 628 | memset(sumWindow, 0, sizeof(uint64_t)*2*WINDOW_SIZE); |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 629 | int true_window_size = 1; |
Marc Kupietz | 39a4fd0 | 2019-01-23 10:18:43 +0100 | [diff] [blame] | 630 | int usedPositions=0; |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 631 | |
Marc Kupietz | 6d0fa54 | 2021-02-26 09:24:35 +0100 | [diff] [blame] | 632 | if(w1 > _vocab.size()) { |
| 633 | std::cout << w1 << "> vocabulary size " << _vocab.size() << "\n"; |
| 634 | w1 -= _vocab.size(); |
| 635 | } |
| 636 | #ifdef DEBUG |
| 637 | std::cout << "Searching for collocates of " << _vocab[w1].word << "\n"; |
| 638 | #endif |
| 639 | // #pragma omp parallel num_threads(40) |
| 640 | // #pragma omp single |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 641 | for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, min_w2, 0)); it->isValid(); it->Next()) { |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 642 | uint64_t value = it->intValue(), |
| 643 | key = it->intKey(); |
Marc Kupietz | bd96619 | 2018-10-13 14:14:37 +0200 | [diff] [blame] | 644 | if((w2 = W2(key)) > max_w2) |
| 645 | continue; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 646 | if(last_w2 == 0xffffffffffffffff) last_w2 = w2; |
| 647 | if (w2 != last_w2) { |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 648 | if (sum >= FREQUENCY_THRESHOLD) { |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 649 | collocators.push_back({}); |
| 650 | rocksdb::Collocator *result = &(collocators[collocators.size()-1]); |
Marc Kupietz | 6d0fa54 | 2021-02-26 09:24:35 +0100 | [diff] [blame] | 651 | // #pragma omp task firstprivate(last_w2, sumWindow, sum, usedPositions, true_window_size) shared(w1, result) if(sum > 1000000) |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 652 | { |
| 653 | // uint64_t *nsw = (uint64_t *)malloc(sizeof(uint64_t) * 2 *WINDOW_SIZE); |
| 654 | // memcpy(nsw, sumWindow, sizeof(uint64_t) * 2 *WINDOW_SIZE); |
| 655 | applyCAMeasures(w1, last_w2, sumWindow, sum, usedPositions, true_window_size, result); |
| 656 | // free(nsw); |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 657 | } |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 658 | } |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 659 | memset(sumWindow, 0, 2*WINDOW_SIZE * sizeof(uint64_t)); |
Marc Kupietz | 39a4fd0 | 2019-01-23 10:18:43 +0100 | [diff] [blame] | 660 | usedPositions = 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)); |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 661 | sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 662 | last_w2 = w2; |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 663 | maxv = value; |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 664 | sum = value; |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 665 | true_window_size = 1; |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 666 | if (min_w2 == max_w2 && w2 != min_w2) |
| 667 | break; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 668 | } else { |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 669 | sum += value; |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 670 | if(value > maxv) |
| 671 | maxv = value; |
Marc Kupietz | 39a4fd0 | 2019-01-23 10:18:43 +0100 | [diff] [blame] | 672 | usedPositions |= 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)); |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 673 | sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value; |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 674 | true_window_size++; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 675 | } |
| 676 | } |
| 677 | |
Marc Kupietz | 6d0fa54 | 2021-02-26 09:24:35 +0100 | [diff] [blame] | 678 | // #pragma omp taskwait |
| 679 | sort(collocators.begin(), collocators.end(), sortByLogDiceAF); |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 680 | |
Marc Kupietz | 30e4d5f | 2021-02-26 09:27:49 +0100 | [diff] [blame] | 681 | #ifdef DEBUG |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 682 | int i=0; |
| 683 | for (Collocator c : collocators) { |
| 684 | if(i++>10) break; |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 685 | std::cout << "w1:" << _vocab[w1].word << ", w2: *" << _vocab[c.w2].word << "*" |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 686 | << "\t f(w1):" << _vocab[w1].freq |
| 687 | << "\t f(w2):" << _vocab[c.w2].freq |
Marc Kupietz | 51f9379 | 2018-01-25 08:51:01 +0100 | [diff] [blame] | 688 | << "\t f(w1, w2):" << c.raw |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 689 | << "\t pmi:" << c.pmi |
| 690 | << "\t npmi:" << c.npmi |
| 691 | << "\t llr:" << c.llr |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 692 | << "\t md:" << c.md |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 693 | << "\t lfmd:" << c.lfmd |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 694 | << "\t total:" << total |
| 695 | << std::endl; |
| 696 | } |
Marc Kupietz | 30e4d5f | 2021-02-26 09:27:49 +0100 | [diff] [blame] | 697 | #endif |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 698 | |
| 699 | return collocators; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 700 | } |
| 701 | |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 702 | |
| 703 | std::vector<Collocator> rocksdb::CollocatorDB::get_collocation_scores(uint32_t w1, uint32_t w2) { |
| 704 | return get_collocators(w1, w2, w2); |
| 705 | } |
| 706 | |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 707 | std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1) { |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 708 | return get_collocators(w1, 0, UINT32_MAX); |
Marc Kupietz | bd96619 | 2018-10-13 14:14:37 +0200 | [diff] [blame] | 709 | } |
| 710 | |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 711 | void rocksdb::CollocatorDB::dumpSparseLlr(uint32_t w1, uint32_t min_cooccur) { |
| 712 | std::vector<Collocator> collocators; |
| 713 | std::stringstream stream; |
| 714 | uint64_t w2, last_w2 = 0xffffffffffffffff; |
| 715 | uint64_t maxv = 0, total_w1 = 0; |
| 716 | bool first = true; |
| 717 | for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) { |
| 718 | uint64_t value = it->intValue(), |
| 719 | key = it->intKey(); |
| 720 | w2 = W2(key); |
| 721 | total_w1 += value; |
| 722 | if(last_w2 == 0xffffffffffffffff) last_w2 = w2; |
| 723 | if (w2 != last_w2) { |
| 724 | if(maxv >= min_cooccur) { |
Marc Kupietz | bbd236e | 2019-01-21 16:50:19 +0100 | [diff] [blame] | 725 | 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] | 726 | if(first) |
| 727 | first = false; |
| 728 | else |
| 729 | stream << " "; |
| 730 | stream << w2 << " " << llr; |
| 731 | } |
| 732 | last_w2 = w2; |
| 733 | maxv = value; |
| 734 | } else { |
| 735 | if(value > maxv) |
| 736 | maxv = value; |
| 737 | } |
| 738 | } |
| 739 | if(first) |
| 740 | stream << "1 0.0"; |
| 741 | stream << "\n"; |
| 742 | std::cout << stream.str(); |
| 743 | } |
| 744 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 745 | rocksdb::Slice rocksdb::CollocatorIterator::key() const { return base_iterator_->key(); } |
| 746 | rocksdb::Slice rocksdb::CollocatorIterator::value() const { return base_iterator_->value(); } |
| 747 | rocksdb::Status rocksdb::CollocatorIterator::status() const { return base_iterator_->status(); } |
| 748 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 749 | }; |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 750 | |
Marc Kupietz | 4a5e08a | 2018-06-05 11:07:11 +0200 | [diff] [blame] | 751 | string rocksdb::CollocatorDB::getWord(uint32_t w1) { |
| 752 | return _vocab[w1].word; |
| 753 | } |
| 754 | |
Marc Kupietz | e962715 | 2019-02-04 12:32:12 +0100 | [diff] [blame] | 755 | string rocksdb::CollocatorDB::collocators2json(uint32_t w1, vector<Collocator> collocators) { |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 756 | ostringstream s; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 757 | int i = 0; |
Marc Kupietz | e962715 | 2019-02-04 12:32:12 +0100 | [diff] [blame] | 758 | s << " { \"f1\": " << _vocab[w1].freq << "," << |
| 759 | "\"w1\":\"" << string(_vocab[w1].word) << "\", " << |
| 760 | "\"N\": " << total << ", " << |
| 761 | "\"collocates\": ["; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 762 | bool first = true; |
| 763 | for (Collocator c : collocators) { |
Marc Kupietz | b999ec5 | 2018-06-05 11:20:46 +0200 | [diff] [blame] | 764 | if(strncmp(_vocab[c.w2].word.c_str(), "quot", 4) == 0) continue; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 765 | if (i++ > 200) |
| 766 | break; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 767 | if(!first) |
| 768 | s << ",\n"; |
| 769 | else |
| 770 | first = false; |
| 771 | s << "{" |
Marc Kupietz | 7d9558f | 2019-01-22 16:26:50 +0100 | [diff] [blame] | 772 | "\"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] | 773 | "\"f2\":" << c.f2 << "," << |
Marc Kupietz | 51f9379 | 2018-01-25 08:51:01 +0100 | [diff] [blame] | 774 | "\"f\":" << c.raw << "," << |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 775 | "\"npmi\":" << c.npmi << "," << |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 776 | "\"pmi\":" << c.pmi << "," << |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 777 | "\"llr\":" << c.llr << "," << |
| 778 | "\"lfmd\":" << c.lfmd << "," << |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 779 | "\"md\":" << c.md << "," << |
| 780 | "\"dice\":" << c.dice << "," << |
| 781 | "\"ld\":" << c.logdice << "," << |
Marc Kupietz | 6702e04 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 782 | "\"lncount\":" << c.left_raw << "," << |
| 783 | "\"rncount\":" << c.right_raw << "," << |
| 784 | "\"lnpmi\":" << c.left_pmi << "," << |
| 785 | "\"rnpmi\":" << c.right_pmi << "," << |
Marc Kupietz | 3203e4c | 2019-02-04 12:42:45 +0100 | [diff] [blame] | 786 | "\"af\":" << c.ldaf << "," << |
Marc Kupietz | e9f5893 | 2019-01-24 15:12:59 +0100 | [diff] [blame] | 787 | "\"win\":" << c.window << "," << |
| 788 | "\"afwin\":" << c.af_window << |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 789 | "}"; |
| 790 | } |
Marc Kupietz | e962715 | 2019-02-04 12:32:12 +0100 | [diff] [blame] | 791 | s << "]}\n"; |
Marc Kupietz | 0421d09 | 2021-03-13 18:05:14 +0100 | [diff] [blame^] | 792 | // std::cout << s.str(); |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 793 | return s.str(); |
| 794 | } |
| 795 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 796 | typedef rocksdb::CollocatorDB COLLOCATORS; |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 797 | |
| 798 | extern "C" { |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 799 | COLLOCATORS *open_collocatordb_for_write(char *dbname) { |
| 800 | return new rocksdb::CollocatorDB(dbname, false); |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 801 | } |
| 802 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 803 | COLLOCATORS *open_collocatordb(char *dbname) { |
| 804 | return new rocksdb::CollocatorDB(dbname, true); |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 805 | } |
| 806 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 807 | 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] | 808 | db->inc(w1, w2, dist); |
| 809 | } |
| 810 | |
| 811 | void dump_collocators(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) { |
| 812 | db->dump(w1, w2, dist); |
| 813 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 814 | |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 815 | void get_collocators(COLLOCATORS *db, uint32_t w1) { |
| 816 | db->get_collocators(w1); |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 817 | } |
| 818 | |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 819 | void get_collocation_scores(COLLOCATORS *db, uint32_t w1, uint32_t w2) { |
| 820 | db->get_collocation_scores(w1, w2); |
| 821 | } |
| 822 | |
Marc Kupietz | ca3a52e | 2018-06-05 14:16:23 +0200 | [diff] [blame] | 823 | const char *get_word(COLLOCATORS *db, uint32_t w) { |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 824 | return strdup(db->getWord(w).c_str()); |
Marc Kupietz | ca3a52e | 2018-06-05 14:16:23 +0200 | [diff] [blame] | 825 | } |
| 826 | |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 827 | const char *get_collocators_as_json(COLLOCATORS *db, uint32_t w1) { |
Marc Kupietz | e962715 | 2019-02-04 12:32:12 +0100 | [diff] [blame] | 828 | return strdup(db->collocators2json(w1, db->get_collocators(w1)).c_str()); |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 829 | } |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 830 | |
| 831 | const char *get_collocation_scores_as_json(COLLOCATORS *db, uint32_t w1, uint32_t w2) { |
| 832 | return strdup(db->collocators2json(w1, db->get_collocation_scores(w1, w2)).c_str()); |
| 833 | } |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 834 | } |