Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 1 | #define EXPORT __attribute__((visibility("visible"))) |
| 2 | #define IMPORT |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 3 | |
Marc Kupietz | 5ffc474 | 2024-11-15 15:45:12 +0100 | [diff] [blame] | 4 | #include <cassert> |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 5 | #include <memory> |
| 6 | #include <iostream> |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 7 | #include <algorithm> |
| 8 | #include <vector> |
Marc Kupietz | 5ffc474 | 2024-11-15 15:45:12 +0100 | [diff] [blame] | 9 | #include <cstdint> |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 10 | #include <string> |
| 11 | #include <sstream> // for ostringstream |
Marc Kupietz | 5ffc474 | 2024-11-15 15:45:12 +0100 | [diff] [blame] | 12 | #include <cmath> |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 13 | #include <rocksdb/cache.h> |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 14 | #include "rocksdb/db.h" |
| 15 | #include "rocksdb/env.h" |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 16 | #include "rocksdb/table.h" |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 17 | #include <rocksdb/merge_operator.h> |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 18 | #include <rocksdb/slice_transform.h> |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 19 | #include "merge_operators.h" |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame] | 20 | #include "export.h" |
Marc Kupietz | 6208fd7 | 2024-11-15 15:46:19 +0100 | [diff] [blame] | 21 | #include "config.h" |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 22 | |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 23 | #define WINDOW_SIZE 5 |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 24 | #define FREQUENCY_THRESHOLD 5 |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 25 | #define IS_BIG_ENDIAN (*(uint16_t *)"\0\xff" < 0x100) |
| 26 | #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] | 27 | #define W1(key) (uint64_t)(key & 0xffffff) |
| 28 | #define W2(key) (uint64_t)((key >> 24) & 0xffffff) |
| 29 | #define DIST(key) (int8_t)((uint64_t)((key >> 56) & 0xff)) |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 30 | |
| 31 | typedef struct { |
| 32 | uint64_t freq; |
| 33 | char *word; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 34 | } vocab_entry; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 35 | |
| 36 | // typedef struct Collocator { |
| 37 | // uint64_t w2; |
| 38 | // uint64_t sum; |
| 39 | // }; |
| 40 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 41 | using namespace rocksdb; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 42 | using namespace std; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 43 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 44 | namespace rocksdb { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 45 | class Collocator { |
| 46 | public: |
| 47 | uint32_t w2; |
| 48 | uint64_t f2; |
| 49 | uint64_t raw; |
| 50 | double pmi; |
| 51 | double npmi; |
| 52 | double llr; |
| 53 | double lfmd; |
| 54 | double md; |
| 55 | uint64_t left_raw; |
| 56 | uint64_t right_raw; |
| 57 | double left_pmi; |
| 58 | double right_pmi; |
| 59 | double dice; |
| 60 | double logdice; |
| 61 | double ldaf; |
| 62 | int window; |
| 63 | int af_window; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 64 | }; |
| 65 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 66 | size_t num_merge_operator_calls; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 67 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 68 | void resetNumMergeOperatorCalls() { num_merge_operator_calls = 0; } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 69 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 70 | size_t num_partial_merge_calls; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 71 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 72 | void resetNumPartialMergeCalls() { num_partial_merge_calls = 0; } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 73 | |
| 74 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 75 | inline void EncodeFixed64(char *buf, uint64_t value) { |
| 76 | if (!IS_BIG_ENDIAN) { |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 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 | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 90 | inline uint32_t DecodeFixed32(const char *ptr) { |
| 91 | if (!IS_BIG_ENDIAN) { |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 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 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 104 | inline uint64_t DecodeFixed64(const char *ptr) { |
| 105 | if (!IS_BIG_ENDIAN) { |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 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 |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 119 | r1 = f1 * window_size, |
| 120 | c1 = f2, |
| 121 | e = r1 * c1 / total, |
| 122 | o = f12; |
| 123 | if (f12 < FREQUENCY_THRESHOLD) |
Marc Kupietz | f4a649a | 2021-02-26 09:18:01 +0100 | [diff] [blame] | 124 | return -1.0; |
| 125 | else |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 126 | return log2(o / e); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 127 | } |
| 128 | |
Marc Kupietz | ce0b8b0 | 2018-06-05 11:06:39 +0200 | [diff] [blame] | 129 | // Bouma, Gerlof (2009): <a href="https://svn.spraakdata.gu.se/repos/gerlof/pub/www/Docs/npmi-pfd.pdf"> |
| 130 | // Normalized (pointwise) mutual information in collocation extraction</a>. In Proceedings of GSCL. |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 131 | 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] | 132 | double |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 133 | r1 = f1 * window_size, |
| 134 | c1 = f2, |
| 135 | e = r1 * c1 / total, |
| 136 | o = f12; |
| 137 | if (f12 < FREQUENCY_THRESHOLD) |
Marc Kupietz | 8caf991 | 2018-06-05 10:51:18 +0200 | [diff] [blame] | 138 | return -1.0; |
| 139 | else |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 140 | return log2(o / e) / (-log2(o / total / window_size)); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | // Thanopoulos, A., Fakotakis, N., Kokkinakis, G.: Comparative evaluation of collocation extraction metrics. |
| 144 | // In: International Conference on Language Resources and Evaluation (LREC-2002). (2002) 620–625 |
| 145 | // double md = log2(pow((double)max * window_size / total, 2) / (window_size * ((double)_vocab[w1].freq/total) * ((double)_vocab[last_w2].freq/total))); |
| 146 | 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] | 147 | double |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 148 | r1 = f1 * window_size, |
| 149 | c1 = f2, |
| 150 | e = r1 * c1 / total, |
| 151 | o = f12; |
| 152 | return log2(o * o / e); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | 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] | 156 | double |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 157 | r1 = f1 * window_size, |
| 158 | c1 = f2, |
| 159 | e = r1 * c1 / total, |
| 160 | o = f12; |
| 161 | if (f12 == 0) |
Marc Kupietz | 8caf991 | 2018-06-05 10:51:18 +0200 | [diff] [blame] | 162 | return 0; |
| 163 | else |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 164 | return log2(o * o * o / e); |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 165 | } |
| 166 | |
Marc Kupietz | bbd236e | 2019-01-21 16:50:19 +0100 | [diff] [blame] | 167 | // 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. |
| 168 | // Free PDF available from http://purl.org/stefan.evert/PUB/Evert2004phd.pdf |
| 169 | static inline double ca_ll(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) { |
| 170 | double |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 171 | r1 = (double) w1 * window_size, |
| 172 | r2 = (double) n - r1, |
| 173 | c1 = w2, |
| 174 | c2 = n - c1, |
| 175 | o11 = w12, o12 = r1 - o11, |
| 176 | o21 = c1 - w12, o22 = r2 - o21, |
| 177 | e11 = r1 * c1 / n, e12 = r1 * c2 / n, |
| 178 | e21 = r2 * c1 / n, e22 = r2 * c2 / n; |
| 179 | return (2 * ((o11 > 0 ? o11 * log(o11 / e11) : 0) + (o12 > 0 ? o12 * log(o12 / e12) : 0) + |
| 180 | (o21 > 0 ? o21 * log(o21 / e21) : 0) + (o22 > 0 ? o22 * log(o22 / e22) : 0))); |
Marc Kupietz | bbd236e | 2019-01-21 16:50:19 +0100 | [diff] [blame] | 181 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 182 | |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 183 | |
| 184 | static inline double ca_dice(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) { |
| 185 | double |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 186 | r1 = (double) w1 * window_size, |
| 187 | c1 = w2; |
| 188 | return 2 * w12 / (c1 + r1); |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | // 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. |
| 192 | static inline double ca_logdice(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) { |
| 193 | double |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 194 | r1 = (double) w1 * window_size, |
| 195 | c1 = w2; |
| 196 | return 14 + log2(2 * w12 / (c1 + r1)); |
Marc Kupietz | 4188045 | 2019-01-22 15:29:06 +0100 | [diff] [blame] | 197 | } |
| 198 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 199 | class CountMergeOperator : public AssociativeMergeOperator { |
| 200 | public: |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 201 | CountMergeOperator() { |
| 202 | mergeOperator_ = MergeOperators::CreateUInt64AddOperator(); |
| 203 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 204 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 205 | virtual bool Merge(const Slice &key, |
| 206 | const Slice *existing_value, |
| 207 | const Slice &value, |
| 208 | std::string *new_value, |
| 209 | Logger *logger) const override { |
| 210 | assert(new_value->empty()); |
| 211 | ++num_merge_operator_calls; |
| 212 | if (existing_value == nullptr) { |
| 213 | new_value->assign(value.data(), value.size()); |
| 214 | return true; |
| 215 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 216 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 217 | return mergeOperator_->PartialMerge( |
| 218 | key, |
| 219 | *existing_value, |
| 220 | value, |
| 221 | new_value, |
| 222 | logger); |
| 223 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 224 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 225 | virtual const char *Name() const override { |
| 226 | return "UInt64AddOperator"; |
| 227 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 228 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 229 | private: |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 230 | std::shared_ptr<MergeOperator> mergeOperator_; |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 231 | }; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 232 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 233 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 234 | class CollocatorIterator : public Iterator { |
| 235 | private: |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 236 | char prefixc[sizeof(uint64_t)]; |
| 237 | Iterator *base_iterator_; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 238 | |
| 239 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 240 | public: |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 241 | CollocatorIterator(Iterator *base_iterator) |
| 242 | : base_iterator_(base_iterator) {} |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 243 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 244 | void setPrefix(char *prefix) { |
| 245 | memcpy(prefixc, prefix, sizeof(uint64_t)); |
| 246 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 247 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 248 | virtual void SeekToFirst() { base_iterator_->SeekToFirst(); } |
| 249 | |
| 250 | virtual void SeekToLast() { base_iterator_->SeekToLast(); } |
| 251 | |
| 252 | virtual void Seek(const rocksdb::Slice &s) { base_iterator_->Seek(s); } |
| 253 | |
| 254 | virtual void |
| 255 | SeekForPrev(const rocksdb::Slice &s) { base_iterator_->SeekForPrev(s); } |
| 256 | |
| 257 | virtual void Prev() { base_iterator_->Prev(); } |
| 258 | |
| 259 | virtual void Next() { base_iterator_->Next(); } |
| 260 | |
| 261 | virtual Slice key() const; |
| 262 | |
| 263 | virtual Slice value() const; |
| 264 | |
| 265 | virtual Status status() const; |
| 266 | |
| 267 | virtual bool Valid() const; |
| 268 | |
| 269 | bool isValid(); |
| 270 | |
| 271 | uint64_t intValue(); |
| 272 | |
| 273 | uint64_t intKey(); |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 274 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 275 | }; |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 276 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 277 | // rocksdb::CollocatorIterator::CollocatorIterator(Iterator* base_iterator) {} |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 278 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 279 | bool rocksdb::CollocatorIterator::Valid() const { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 280 | return base_iterator_->Valid() && key().starts_with(std::string(prefixc, 3)); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 281 | } |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 282 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 283 | bool rocksdb::CollocatorIterator::isValid() { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 284 | return base_iterator_->Valid() && key().starts_with(std::string(prefixc, 3)); |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 285 | // return key().starts_with(std::string(prefixc,3)); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 286 | } |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 287 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 288 | uint64_t rocksdb::CollocatorIterator::intKey() { |
| 289 | return DecodeFixed64(base_iterator_->key().data()); |
| 290 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 291 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 292 | uint64_t rocksdb::CollocatorIterator::intValue() { |
| 293 | return DecodeFixed64(base_iterator_->value().data()); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 294 | } |
| 295 | |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 296 | class VocabEntry { |
| 297 | public: |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 298 | string word; |
| 299 | uint64_t freq; |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 300 | }; |
| 301 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 302 | class CollocatorDB { |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 303 | private: |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 304 | WriteOptions merge_option_; // for merge |
| 305 | char _one[sizeof(uint64_t)]; |
| 306 | Slice _one_slice; |
| 307 | vector<VocabEntry> _vocab; |
| 308 | uint64_t total = 0; |
| 309 | uint64_t sentences = 0; |
| 310 | float avg_window_size = 8.0; |
| 311 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 312 | protected: |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 313 | std::shared_ptr<DB> db_; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 314 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 315 | WriteOptions put_option_; |
| 316 | ReadOptions get_option_; |
| 317 | WriteOptions delete_option_; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 318 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 319 | uint64_t default_; |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 320 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 321 | std::shared_ptr<DB> OpenDb(const char *dbname); |
| 322 | |
| 323 | std::shared_ptr<DB> OpenDbForRead(const char *dbname); |
| 324 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 325 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 326 | public: |
Marc Kupietz | b4a683c | 2021-03-14 09:19:44 +0100 | [diff] [blame] | 327 | void readVocab(string fname); |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 328 | string getWord(uint32_t w1); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 329 | |
Marc Kupietz | 979580e | 2024-11-21 18:05:07 +0100 | [diff] [blame^] | 330 | uint64_t getWordId(const char *word) const; |
| 331 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 332 | CollocatorDB(const char *db_name, bool read_only); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 333 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 334 | // public interface of CollocatorDB. |
| 335 | // All four functions return false |
| 336 | // if the underlying level db operation failed. |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 337 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 338 | // mapped to a levedb Put |
| 339 | bool set(const std::string &key, uint64_t value) { |
| 340 | // just treat the internal rep of int64 as the string |
| 341 | char buf[sizeof(value)]; |
| 342 | EncodeFixed64(buf, value); |
| 343 | Slice slice(buf, sizeof(value)); |
| 344 | auto s = db_->Put(put_option_, key, slice); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 345 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 346 | if (s.ok()) { |
| 347 | return true; |
| 348 | } else { |
| 349 | std::cerr << s.ToString() << std::endl; |
| 350 | return false; |
| 351 | } |
| 352 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 353 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 354 | DB *getDb() { |
| 355 | return db_.get(); |
| 356 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 357 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 358 | // mapped to a rocksdb Delete |
| 359 | bool remove(const std::string &key) { |
| 360 | auto s = db_->Delete(delete_option_, key); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 361 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 362 | if (s.ok()) { |
| 363 | return true; |
| 364 | } else { |
| 365 | std::cerr << s.ToString() << std::endl; |
| 366 | return false; |
| 367 | } |
| 368 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 369 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 370 | // mapped to a rocksdb Get |
| 371 | bool get(const std::string &key, uint64_t *value) { |
| 372 | std::string str; |
| 373 | auto s = db_->Get(get_option_, key, &str); |
| 374 | |
| 375 | if (s.IsNotFound()) { |
| 376 | // return default value if not found; |
| 377 | *value = default_; |
| 378 | return true; |
| 379 | } else if (s.ok()) { |
| 380 | // deserialization |
| 381 | if (str.size() != sizeof(uint64_t)) { |
| 382 | std::cerr << "value corruption\n"; |
| 383 | return false; |
| 384 | } |
| 385 | *value = DecodeFixed64(&str[0]); |
| 386 | return true; |
| 387 | } else { |
| 388 | std::cerr << s.ToString() << std::endl; |
| 389 | return false; |
| 390 | } |
| 391 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 392 | |
| 393 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 394 | uint64_t get(const uint32_t w1, const uint32_t w2, const int8_t dist) { |
| 395 | char encoded_key[sizeof(uint64_t)]; |
| 396 | EncodeFixed64(encoded_key, encodeCollocation(w1, w2, dist)); |
| 397 | uint64_t value = default_; |
| 398 | get(std::string(encoded_key, 8), &value); |
| 399 | return value; |
| 400 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 401 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 402 | virtual void inc(const std::string &key) { |
| 403 | db_->Merge(merge_option_, key, _one_slice); |
| 404 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 405 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 406 | void inc(const uint64_t key) { |
| 407 | char encoded_key[sizeof(uint64_t)]; |
| 408 | EncodeFixed64(encoded_key, key); |
| 409 | db_->Merge(merge_option_, std::string(encoded_key, 8), _one_slice); |
| 410 | } |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 411 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 412 | virtual void inc(const uint32_t w1, const uint32_t w2, const uint8_t dist); |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 413 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 414 | void dump(uint32_t w1, uint32_t w2, int8_t dist); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 415 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 416 | vector<Collocator> get_collocators(uint32_t w1); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 417 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 418 | vector<Collocator> get_collocators(uint32_t w1, uint32_t max_w2); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 419 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 420 | vector<Collocator> get_collocation_scores(uint32_t w1, uint32_t w2); |
| 421 | |
| 422 | vector<Collocator> |
| 423 | get_collocators(uint32_t w1, uint32_t min_w2, uint32_t max_w2); |
| 424 | |
| 425 | void |
| 426 | applyCAMeasures(const uint32_t w1, const uint32_t w2, uint64_t *sumWindow, |
| 427 | const uint64_t sum, const int usedPositions, |
| 428 | int true_window_size, rocksdb::Collocator *result); |
| 429 | |
| 430 | void dumpSparseLlr(uint32_t w1, uint32_t min_cooccur); |
| 431 | |
| 432 | string collocators2json(uint32_t w1, vector<Collocator> collocators); |
| 433 | |
| 434 | // mapped to a rocksdb Merge operation |
| 435 | virtual bool add(const std::string &key, uint64_t value) { |
| 436 | char encoded[sizeof(uint64_t)]; |
| 437 | EncodeFixed64(encoded, value); |
| 438 | Slice slice(encoded, sizeof(uint64_t)); |
| 439 | auto s = db_->Merge(merge_option_, key, slice); |
| 440 | |
| 441 | if (s.ok()) { |
| 442 | return true; |
| 443 | } else { |
| 444 | std::cerr << s.ToString() << std::endl; |
| 445 | return false; |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | CollocatorIterator *SeekIterator(uint64_t w1, uint64_t w2, int8_t dist); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 450 | }; |
| 451 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 452 | rocksdb::CollocatorDB::CollocatorDB(const char *db_name, bool read_only = false) { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 453 | // merge_option_.sync = true; |
| 454 | if (read_only) |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 455 | db_ = OpenDbForRead(strdup(db_name)); |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 456 | else |
| 457 | db_ = OpenDb(db_name); |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 458 | assert(db_); |
| 459 | uint64_t one = 1; |
| 460 | EncodeFixed64(_one, one); |
| 461 | _one_slice = Slice(_one, sizeof(uint64_t)); |
| 462 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 463 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 464 | 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] | 465 | inc(encodeCollocation(w1, w2, dist)); |
| 466 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 467 | |
Marc Kupietz | b4a683c | 2021-03-14 09:19:44 +0100 | [diff] [blame] | 468 | void rocksdb::CollocatorDB::readVocab(string fname) { |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 469 | char strbuf[2048]; |
| 470 | uint64_t freq; |
| 471 | FILE *fin = fopen(fname.c_str(), "rb"); |
| 472 | if (fin == NULL) { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 473 | cout << "Vocabulary file " << fname << " not found\n"; |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 474 | exit(1); |
| 475 | } |
| 476 | uint64_t i = 0; |
„feldmueller“ | 2441f7c | 2024-11-14 16:31:30 +0100 | [diff] [blame] | 477 | while (fscanf(fin, "%s %lu", strbuf, &freq) == 2) { |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 478 | _vocab.push_back({strbuf, freq}); |
| 479 | total += freq; |
| 480 | i++; |
| 481 | } |
| 482 | fclose(fin); |
Marc Kupietz | 4ec51c1 | 2019-01-21 11:06:39 +0100 | [diff] [blame] | 483 | |
| 484 | char size_fname[256]; |
| 485 | strcpy(size_fname, fname.c_str()); |
| 486 | char *pos = strstr(size_fname, ".vocab"); |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 487 | if (pos) { |
| 488 | *pos = 0; |
Marc Kupietz | 4ec51c1 | 2019-01-21 11:06:39 +0100 | [diff] [blame] | 489 | strcat(size_fname, ".size"); |
| 490 | FILE *fp = fopen(size_fname, "r"); |
| 491 | if (fp != NULL) { |
| 492 | fscanf(fp, "%lu", &sentences); |
| 493 | fscanf(fp, "%lu", &total); |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 494 | float sl = (float) total / (float) sentences; |
Marc Kupietz | 4ec51c1 | 2019-01-21 11:06:39 +0100 | [diff] [blame] | 495 | float w = WINDOW_SIZE; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 496 | avg_window_size = ((sl > 2 * w ? (sl - 2 * w) * 2 * w : 0) + (double) w * (3 * w - 1)) / sl; |
| 497 | fprintf(stdout, |
| 498 | "Size corrections found: corpus size: %lu tokens in %lu sentences, avg. sentence size: %f, avg. window size: %f\n", |
| 499 | total, sentences, sl, avg_window_size); |
Marc Kupietz | 4ec51c1 | 2019-01-21 11:06:39 +0100 | [diff] [blame] | 500 | fclose(fp); |
| 501 | } else { |
Marc Kupietz | b4a683c | 2021-03-14 09:19:44 +0100 | [diff] [blame] | 502 | // std::cout << "size file " << size_fname << " not found\n"; |
Marc Kupietz | 4ec51c1 | 2019-01-21 11:06:39 +0100 | [diff] [blame] | 503 | } |
| 504 | } else { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 505 | std::cout << "cannot determine size file " << size_fname << "\n"; |
Marc Kupietz | 4ec51c1 | 2019-01-21 11:06:39 +0100 | [diff] [blame] | 506 | } |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 507 | } |
| 508 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 509 | std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDbForRead(const char *name) { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 510 | DB *db; |
| 511 | Options options; |
| 512 | options.env->SetBackgroundThreads(4); |
| 513 | options.create_if_missing = true; |
| 514 | options.merge_operator = std::make_shared<CountMergeOperator>(); |
| 515 | options.max_successive_merges = 0; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 516 | // options.prefix_extractor.reset(NewFixedPrefixTransform(8)); |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 517 | options.IncreaseParallelism(); |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 518 | options.OptimizeLevelStyleCompaction(); |
| 519 | options.prefix_extractor.reset(NewFixedPrefixTransform(3)); |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 520 | ostringstream dbname, vocabname; |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 521 | dbname << name << ".rocksdb"; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 522 | auto s = DB::OpenForReadOnly(options, dbname.str(), &db); |
| 523 | if (!s.ok()) { |
| 524 | std::cerr << s.ToString() << std::endl; |
| 525 | assert(false); |
| 526 | } |
Marc Kupietz | 37359b1 | 2018-01-09 21:11:37 +0100 | [diff] [blame] | 527 | vocabname << name << ".vocab"; |
Marc Kupietz | b4a683c | 2021-03-14 09:19:44 +0100 | [diff] [blame] | 528 | readVocab(vocabname.str()); |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 529 | return std::shared_ptr<DB>(db); |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 530 | } |
| 531 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 532 | std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDb(const char *dbname) { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 533 | DB *db; |
| 534 | Options options; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 535 | |
| 536 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 537 | options.env->SetBackgroundThreads(4); |
| 538 | options.create_if_missing = true; |
| 539 | options.merge_operator = std::make_shared<CountMergeOperator>(); |
| 540 | options.max_successive_merges = 0; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 541 | // options.prefix_extractor.reset(NewFixedPrefixTransform(8)); |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 542 | options.IncreaseParallelism(); |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 543 | options.OptimizeLevelStyleCompaction(); |
| 544 | // options.max_write_buffer_number = 48; |
| 545 | // options.max_background_jobs = 48; |
| 546 | // options.allow_concurrent_memtable_write=true; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 547 | // options.memtable_factory.reset(rocksdb::NewHashLinkListRepFactory(200000)); |
| 548 | // options.enable_write_thread_adaptive_yield = 1; |
| 549 | // options.allow_concurrent_memtable_write = 1; |
| 550 | // options.memtable_factory.reset(new rocksdb::SkipListFactory); |
| 551 | // options.write_buffer_size = 1 << 22; |
| 552 | // options.allow_mmap_reads = true; |
| 553 | // options.allow_mmap_writes = true; |
| 554 | // options.max_background_compactions = 40; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 555 | // BlockBasedTableOptions table_options; |
| 556 | // table_options.filter_policy.reset(NewBloomFilterPolicy(24, false)); |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 557 | // options.bloom_locality = 1; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 558 | // std::shared_ptr<Cache> cache = NewLRUCache(512 * 1024 * 1024); |
| 559 | // table_options.block_cache = cache; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 560 | // options.table_factory.reset(NewBlockBasedTableFactory(table_options)); |
| 561 | Status s; |
| 562 | // DestroyDB(dbname, Options()); |
| 563 | s = DB::Open(options, dbname, &db); |
| 564 | if (!s.ok()) { |
| 565 | std::cerr << s.ToString() << std::endl; |
| 566 | assert(false); |
| 567 | } |
Marc Kupietz | b4a683c | 2021-03-14 09:19:44 +0100 | [diff] [blame] | 568 | total = 1000; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 569 | return std::shared_ptr<DB>(db); |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 570 | } |
| 571 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 572 | 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] | 573 | ReadOptions options; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 574 | options.prefix_same_as_start = true; |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 575 | char prefixc[sizeof(uint64_t)]; |
| 576 | EncodeFixed64(prefixc, encodeCollocation(w1, w2, dist)); |
| 577 | Iterator *it = db_->NewIterator(options); |
| 578 | CollocatorIterator *cit = new CollocatorIterator(it); |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 579 | if (w2 > 0) |
| 580 | cit->Seek(std::string(prefixc, 6)); |
| 581 | else |
| 582 | cit->Seek(std::string(prefixc, 3)); |
Marc Kupietz | 18375e1 | 2017-12-24 10:11:18 +0100 | [diff] [blame] | 583 | cit->setPrefix(prefixc); |
| 584 | return cit; |
| 585 | } |
| 586 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 587 | 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] | 588 | auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, w2, dist)); |
| 589 | for (; it->isValid(); it->Next()) { |
| 590 | uint64_t value = it->intValue(); |
| 591 | uint64_t key = it->intKey(); |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 592 | std::cout << "w1:" << W1(key) << ", w2:" << W2(key) << ", dist:" << (int32_t) DIST(key) << " - count:" << value |
| 593 | << std::endl; |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 594 | } |
| 595 | std::cout << "ready dumping\n"; |
| 596 | } |
| 597 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 598 | bool sortByNpmi(const Collocator &lhs, const Collocator &rhs) { return lhs.npmi > rhs.npmi; } |
| 599 | |
| 600 | bool sortByLfmd(const Collocator &lhs, const Collocator &rhs) { return lhs.lfmd > rhs.lfmd; } |
| 601 | |
| 602 | bool sortByLlr(const Collocator &lhs, const Collocator &rhs) { return lhs.llr > rhs.llr; } |
| 603 | |
| 604 | bool sortByLogDice(const Collocator &lhs, const Collocator &rhs) { return lhs.logdice > rhs.logdice; } |
| 605 | |
Marc Kupietz | 3203e4c | 2019-02-04 12:42:45 +0100 | [diff] [blame] | 606 | 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] | 607 | |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 608 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 609 | void rocksdb::CollocatorDB::applyCAMeasures(const uint32_t w1, const uint32_t w2, uint64_t *sumWindow, |
| 610 | const uint64_t sum, const int usedPositions, int true_window_size, |
| 611 | rocksdb::Collocator *result) { |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 612 | uint64_t f1 = _vocab[w1].freq, f2 = _vocab[w2].freq; |
| 613 | double o = sum, |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 614 | r1 = f1 * true_window_size, |
| 615 | c1 = f2, |
| 616 | e = r1 * c1 / total, |
| 617 | pmi = log2(o / e), |
| 618 | md = log2(o * o / e), |
| 619 | lfmd = log2(o * o * o / e), |
| 620 | llr = ca_ll(f1, f2, sum, total, true_window_size); |
| 621 | double ld = ca_logdice(f1, f2, sum, total, true_window_size); |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 622 | |
| 623 | int bestWindow = usedPositions; |
| 624 | double bestAF = ld; |
| 625 | double currentAF; |
| 626 | // if(f1<75000000) |
| 627 | //#pragma omp parallel for reduction(max:bestAF) |
Marc Kupietz | 6d0fa54 | 2021-02-26 09:24:35 +0100 | [diff] [blame] | 628 | // #pragma omp target teams distribute parallel for reduction(max:bestAF) map(tofrom:bestAF,currentAF,bestWindow,usedPositions) |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 629 | for (int bitmask = 1; bitmask < (1 << (2 * WINDOW_SIZE)); bitmask++) { |
| 630 | if ((bitmask & usedPositions) == 0 || (bitmask & ~usedPositions) > 0) continue; |
| 631 | uint64_t currentWindowSum = 0; |
Marc Kupietz | 6d0fa54 | 2021-02-26 09:24:35 +0100 | [diff] [blame] | 632 | // #pragma omp target teams distribute parallel for reduction(+:currentWindowSum) map(tofrom:bitmask,usedPositions) |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 633 | for (int pos = 0; pos < 2 * WINDOW_SIZE; pos++) { |
| 634 | if (((1 << pos) & bitmask & usedPositions) != 0) |
| 635 | currentWindowSum += sumWindow[pos]; |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 636 | } |
| 637 | currentAF = ca_logdice(f1, f2, currentWindowSum, total, __builtin_popcount(bitmask)); |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 638 | if (currentAF > bestAF) { |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 639 | bestAF = currentAF; |
| 640 | bestWindow = bitmask; |
| 641 | } |
| 642 | } |
| 643 | |
Marc Kupietz | 0421d09 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 644 | *result = {w2, |
| 645 | f2, |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 646 | sum, |
Marc Kupietz | 0421d09 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 647 | pmi, |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 648 | pmi / (-log2(o / total / true_window_size)), |
Marc Kupietz | 0421d09 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 649 | llr, |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 650 | lfmd, |
| 651 | md, |
Marc Kupietz | 0421d09 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 652 | sumWindow[WINDOW_SIZE], |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 653 | sumWindow[WINDOW_SIZE - 1], |
Marc Kupietz | 6d9221d | 2021-02-26 09:34:40 +0100 | [diff] [blame] | 654 | ca_pmi(f1, f2, sumWindow[WINDOW_SIZE], total, 1), |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 655 | ca_pmi(f1, f2, sumWindow[WINDOW_SIZE - 1], total, 1), |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 656 | ca_dice(f1, f2, sum, total, true_window_size), |
| 657 | ld, |
| 658 | bestAF, |
| 659 | usedPositions, |
| 660 | bestWindow |
| 661 | }; |
| 662 | |
| 663 | } |
| 664 | |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 665 | 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] | 666 | std::vector<Collocator> collocators; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 667 | uint64_t w2, last_w2 = 0xffffffffffffffff; |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 668 | uint64_t maxv = 0, sum = 0; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 669 | uint64_t *sumWindow = (uint64_t *) malloc(sizeof(uint64_t) * 2 * WINDOW_SIZE); |
| 670 | memset(sumWindow, 0, sizeof(uint64_t) * 2 * WINDOW_SIZE); |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 671 | int true_window_size = 1; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 672 | int usedPositions = 0; |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 673 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 674 | if (w1 > _vocab.size()) { |
| 675 | std::cout << w1 << "> vocabulary size " << _vocab.size() << "\n"; |
| 676 | w1 -= _vocab.size(); |
| 677 | } |
| 678 | #ifdef DEBUG |
| 679 | std::cout << "Searching for collocates of " << _vocab[w1].word << "\n"; |
| 680 | #endif |
| 681 | // #pragma omp parallel num_threads(40) |
| 682 | // #pragma omp single |
| 683 | 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] | 684 | uint64_t value = it->intValue(), |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 685 | key = it->intKey(); |
| 686 | if ((w2 = W2(key)) > max_w2) |
Marc Kupietz | bd96619 | 2018-10-13 14:14:37 +0200 | [diff] [blame] | 687 | continue; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 688 | if (last_w2 == 0xffffffffffffffff) last_w2 = w2; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 689 | if (w2 != last_w2) { |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 690 | if (sum >= FREQUENCY_THRESHOLD) { |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 691 | collocators.push_back({}); |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 692 | rocksdb::Collocator *result = &(collocators[collocators.size() - 1]); |
| 693 | // #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] | 694 | { |
| 695 | // uint64_t *nsw = (uint64_t *)malloc(sizeof(uint64_t) * 2 *WINDOW_SIZE); |
| 696 | // memcpy(nsw, sumWindow, sizeof(uint64_t) * 2 *WINDOW_SIZE); |
| 697 | applyCAMeasures(w1, last_w2, sumWindow, sum, usedPositions, true_window_size, result); |
| 698 | // free(nsw); |
Marc Kupietz | 75af60f | 2019-01-22 22:34:29 +0100 | [diff] [blame] | 699 | } |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 700 | } |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 701 | memset(sumWindow, 0, 2 * WINDOW_SIZE * sizeof(uint64_t)); |
| 702 | usedPositions = 1 << (-DIST(key) + WINDOW_SIZE - (DIST(key) < 0 ? 1 : 0)); |
| 703 | sumWindow[-DIST(key) + WINDOW_SIZE - (DIST(key) < 0 ? 1 : 0)] = value; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 704 | last_w2 = w2; |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 705 | maxv = value; |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 706 | sum = value; |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 707 | true_window_size = 1; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 708 | if (min_w2 == max_w2 && w2 != min_w2) |
| 709 | break; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 710 | } else { |
Marc Kupietz | 98cbcdc | 2019-01-21 17:11:27 +0100 | [diff] [blame] | 711 | sum += value; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 712 | if (value > maxv) |
Marc Kupietz | 8e0ebea | 2018-01-24 09:53:26 +0100 | [diff] [blame] | 713 | maxv = value; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 714 | usedPositions |= 1 << (-DIST(key) + WINDOW_SIZE - (DIST(key) < 0 ? 1 : 0)); |
| 715 | sumWindow[-DIST(key) + WINDOW_SIZE - (DIST(key) < 0 ? 1 : 0)] = value; |
Marc Kupietz | ade3322 | 2019-01-22 22:52:44 +0100 | [diff] [blame] | 716 | true_window_size++; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 717 | } |
| 718 | } |
| 719 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 720 | // #pragma omp taskwait |
Marc Kupietz | 6d0fa54 | 2021-02-26 09:24:35 +0100 | [diff] [blame] | 721 | sort(collocators.begin(), collocators.end(), sortByLogDiceAF); |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 722 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 723 | #ifdef DEBUG |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 724 | int i=0; |
| 725 | for (Collocator c : collocators) { |
| 726 | if(i++>10) break; |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 727 | std::cout << "w1:" << _vocab[w1].word << ", w2: *" << _vocab[c.w2].word << "*" |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 728 | << "\t f(w1):" << _vocab[w1].freq |
| 729 | << "\t f(w2):" << _vocab[c.w2].freq |
Marc Kupietz | 51f9379 | 2018-01-25 08:51:01 +0100 | [diff] [blame] | 730 | << "\t f(w1, w2):" << c.raw |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 731 | << "\t pmi:" << c.pmi |
| 732 | << "\t npmi:" << c.npmi |
| 733 | << "\t llr:" << c.llr |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 734 | << "\t md:" << c.md |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 735 | << "\t lfmd:" << c.lfmd |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 736 | << "\t total:" << total |
| 737 | << std::endl; |
| 738 | } |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 739 | #endif |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 740 | |
| 741 | return collocators; |
Marc Kupietz | d31254c | 2018-01-20 21:29:30 +0100 | [diff] [blame] | 742 | } |
| 743 | |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 744 | |
| 745 | std::vector<Collocator> rocksdb::CollocatorDB::get_collocation_scores(uint32_t w1, uint32_t w2) { |
| 746 | return get_collocators(w1, w2, w2); |
| 747 | } |
| 748 | |
Marc Kupietz | 8c62c37 | 2019-01-31 12:21:01 +0100 | [diff] [blame] | 749 | std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1) { |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 750 | return get_collocators(w1, 0, UINT32_MAX); |
Marc Kupietz | bd96619 | 2018-10-13 14:14:37 +0200 | [diff] [blame] | 751 | } |
| 752 | |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 753 | void rocksdb::CollocatorDB::dumpSparseLlr(uint32_t w1, uint32_t min_cooccur) { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 754 | std::vector<Collocator> collocators; |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 755 | std::stringstream stream; |
| 756 | uint64_t w2, last_w2 = 0xffffffffffffffff; |
| 757 | uint64_t maxv = 0, total_w1 = 0; |
| 758 | bool first = true; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 759 | for (auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) { |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 760 | uint64_t value = it->intValue(), |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 761 | key = it->intKey(); |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 762 | w2 = W2(key); |
| 763 | total_w1 += value; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 764 | if (last_w2 == 0xffffffffffffffff) last_w2 = w2; |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 765 | if (w2 != last_w2) { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 766 | if (maxv >= min_cooccur) { |
| 767 | double llr = ca_ll(_vocab[w1].freq, _vocab[last_w2].freq, maxv, total, 1); |
| 768 | if (first) |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 769 | first = false; |
| 770 | else |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 771 | stream << " "; |
| 772 | stream << w2 << " " << llr; |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 773 | } |
| 774 | last_w2 = w2; |
| 775 | maxv = value; |
| 776 | } else { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 777 | if (value > maxv) |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 778 | maxv = value; |
| 779 | } |
| 780 | } |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 781 | if (first) |
| 782 | stream << "1 0.0"; |
| 783 | stream << "\n"; |
Marc Kupietz | 3400aa5 | 2018-06-05 10:28:55 +0200 | [diff] [blame] | 784 | std::cout << stream.str(); |
| 785 | } |
| 786 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 787 | rocksdb::Slice rocksdb::CollocatorIterator::key() const { return base_iterator_->key(); } |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 788 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 789 | rocksdb::Slice rocksdb::CollocatorIterator::value() const { return base_iterator_->value(); } |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 790 | |
Marc Kupietz | 4b799e9 | 2018-01-02 11:04:56 +0100 | [diff] [blame] | 791 | rocksdb::Status rocksdb::CollocatorIterator::status() const { return base_iterator_->status(); } |
| 792 | |
Marc Kupietz | 28cc53e | 2017-12-23 17:24:55 +0100 | [diff] [blame] | 793 | }; |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 794 | |
Marc Kupietz | 4a5e08a | 2018-06-05 11:07:11 +0200 | [diff] [blame] | 795 | string rocksdb::CollocatorDB::getWord(uint32_t w1) { |
| 796 | return _vocab[w1].word; |
| 797 | } |
| 798 | |
Marc Kupietz | 979580e | 2024-11-21 18:05:07 +0100 | [diff] [blame^] | 799 | uint64_t rocksdb::CollocatorDB::getWordId(const char *word) const { |
| 800 | for (uint64_t i = 0; i < _vocab.size(); i++) { |
| 801 | if (strcmp(_vocab[i].word.c_str(), word) == 0) |
| 802 | return i; |
| 803 | } |
| 804 | return 0; |
| 805 | } |
| 806 | |
Marc Kupietz | e962715 | 2019-02-04 12:32:12 +0100 | [diff] [blame] | 807 | string rocksdb::CollocatorDB::collocators2json(uint32_t w1, vector<Collocator> collocators) { |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 808 | ostringstream s; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 809 | int i = 0; |
Marc Kupietz | e962715 | 2019-02-04 12:32:12 +0100 | [diff] [blame] | 810 | s << " { \"f1\": " << _vocab[w1].freq << "," << |
| 811 | "\"w1\":\"" << string(_vocab[w1].word) << "\", " << |
| 812 | "\"N\": " << total << ", " << |
| 813 | "\"collocates\": ["; |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 814 | bool first = true; |
| 815 | for (Collocator c : collocators) { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 816 | if (strncmp(_vocab[c.w2].word.c_str(), "quot", 4) == 0) continue; |
Marc Kupietz | 0dd86ef | 2018-01-11 22:23:17 +0100 | [diff] [blame] | 817 | if (i++ > 200) |
| 818 | break; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 819 | if (!first) |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 820 | s << ",\n"; |
| 821 | else |
| 822 | first = false; |
| 823 | s << "{" |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 824 | "\"word\":\"" << (string(_vocab[c.w2].word).compare("<num>") == 0 ? string("###") : string(_vocab[c.w2].word)) |
| 825 | << "\"," << |
| 826 | "\"f2\":" << c.f2 << "," << |
| 827 | "\"f\":" << c.raw << "," << |
| 828 | "\"npmi\":" << c.npmi << "," << |
| 829 | "\"pmi\":" << c.pmi << "," << |
| 830 | "\"llr\":" << c.llr << "," << |
| 831 | "\"lfmd\":" << c.lfmd << "," << |
| 832 | "\"md\":" << c.md << "," << |
| 833 | "\"dice\":" << c.dice << "," << |
| 834 | "\"ld\":" << c.logdice << "," << |
Marc Kupietz | 97f433b | 2021-03-13 18:10:52 +0100 | [diff] [blame] | 835 | "\"ln_count\":" << c.left_raw << "," << |
| 836 | "\"rn_count\":" << c.right_raw << "," << |
| 837 | "\"ln_pmi\":" << c.left_pmi << "," << |
| 838 | "\"rn_pmi\":" << c.right_pmi << "," << |
| 839 | "\"ldaf\":" << c.ldaf << "," << |
Marc Kupietz | e9f5893 | 2019-01-24 15:12:59 +0100 | [diff] [blame] | 840 | "\"win\":" << c.window << "," << |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 841 | "\"afwin\":" << c.af_window << |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 842 | "}"; |
| 843 | } |
Marc Kupietz | e962715 | 2019-02-04 12:32:12 +0100 | [diff] [blame] | 844 | s << "]}\n"; |
Marc Kupietz | 0421d09 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 845 | // std::cout << s.str(); |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 846 | return s.str(); |
| 847 | } |
| 848 | |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 849 | typedef rocksdb::CollocatorDB COLLOCATORS; |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 850 | |
| 851 | extern "C" { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 852 | #ifdef __clang__ |
| 853 | #pragma clang diagnostic push |
| 854 | #pragma ide diagnostic ignored "OCUnusedGlobalDeclarationInspection" |
| 855 | #endif |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame] | 856 | DLL_EXPORT COLLOCATORS *open_collocatordb_for_write(char *dbname) { |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 857 | return new rocksdb::CollocatorDB(dbname, false); |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 858 | } |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 859 | |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame] | 860 | DLL_EXPORT COLLOCATORS *open_collocatordb(char *dbname) { |
Marc Kupietz | 6aec768 | 2018-01-10 09:47:48 +0100 | [diff] [blame] | 861 | return new rocksdb::CollocatorDB(dbname, true); |
Marc Kupietz | 6bb2776 | 2018-01-09 17:53:01 +0100 | [diff] [blame] | 862 | } |
| 863 | |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame] | 864 | DLL_EXPORT 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] | 865 | db->inc(w1, w2, dist); |
| 866 | } |
| 867 | |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame] | 868 | DLL_EXPORT void dump_collocators(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 869 | db->dump(w1, w2, dist); |
| 870 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 871 | |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame] | 872 | DLL_EXPORT COLLOCATORS *get_collocators(COLLOCATORS *db, uint32_t w1) { |
Marc Kupietz | 6663f11 | 2021-03-14 09:20:59 +0100 | [diff] [blame] | 873 | std::vector<Collocator> c = db->get_collocators(w1); |
| 874 | if (c.empty()) |
| 875 | return NULL; |
| 876 | uint64_t size = c.size() + sizeof c[0]; |
| 877 | COLLOCATORS *p = (COLLOCATORS *) malloc(size); |
| 878 | memcpy(p, c.data(), size); |
| 879 | return p; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 880 | } |
Marc Kupietz | c8ddf45 | 2018-01-07 21:33:12 +0100 | [diff] [blame] | 881 | |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame] | 882 | DLL_EXPORT COLLOCATORS *get_collocation_scores(COLLOCATORS *db, uint32_t w1, uint32_t w2) { |
Marc Kupietz | 6663f11 | 2021-03-14 09:20:59 +0100 | [diff] [blame] | 883 | std::vector<Collocator> c = db->get_collocation_scores(w1, w2); |
| 884 | if (c.empty()) |
| 885 | return NULL; |
| 886 | uint64_t size = c.size() + sizeof c[0]; |
| 887 | COLLOCATORS *p = (COLLOCATORS *) malloc(size); |
| 888 | memcpy(p, c.data(), size); |
| 889 | return p; |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 890 | } |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 891 | |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame] | 892 | DLL_EXPORT char *get_word(COLLOCATORS *db, uint32_t w) { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 893 | return strdup(db->getWord(w).c_str()); |
| 894 | } |
Marc Kupietz | ca3a52e | 2018-06-05 14:16:23 +0200 | [diff] [blame] | 895 | |
Marc Kupietz | 979580e | 2024-11-21 18:05:07 +0100 | [diff] [blame^] | 896 | DLL_EXPORT uint64_t get_word_id(COLLOCATORS *db, char *word) { |
| 897 | return db->getWordId(word); |
| 898 | } |
| 899 | |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame] | 900 | DLL_EXPORT void read_vocab(COLLOCATORS *db, char *fname) { |
Marc Kupietz | b4a683c | 2021-03-14 09:19:44 +0100 | [diff] [blame] | 901 | std::string fName(fname); |
| 902 | db->readVocab(fName); |
| 903 | } |
| 904 | |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame] | 905 | DLL_EXPORT const char *get_collocators_as_json(COLLOCATORS *db, uint32_t w1) { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 906 | return strdup(db->collocators2json(w1, db->get_collocators(w1)).c_str()); |
| 907 | } |
Marc Kupietz | 88d116b | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 908 | |
Marc Kupietz | 4422923 | 2024-08-05 15:00:20 +0200 | [diff] [blame] | 909 | DLL_EXPORT const char *get_collocation_scores_as_json(COLLOCATORS *db, uint32_t w1, uint32_t w2) { |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 910 | return strdup(db->collocators2json(w1, db->get_collocation_scores(w1, w2)).c_str()); |
| 911 | } |
Marc Kupietz | b4a683c | 2021-03-14 09:19:44 +0100 | [diff] [blame] | 912 | |
Marc Kupietz | 6208fd7 | 2024-11-15 15:46:19 +0100 | [diff] [blame] | 913 | DLL_EXPORT const char *get_version() { |
| 914 | return PROJECT_VERSION; |
| 915 | } |
| 916 | |
Marc Kupietz | 12af019 | 2021-03-13 18:05:14 +0100 | [diff] [blame] | 917 | #ifdef __clang__ |
| 918 | #pragma clang diagnostic push |
| 919 | #endif |
Marc Kupietz | 06c9a9f | 2018-01-02 16:56:43 +0100 | [diff] [blame] | 920 | } |