2021-05-22 09:18:35 +08:00
|
|
|
|
#pragma once
|
2020-12-31 21:14:13 +08:00
|
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <set>
|
|
|
|
|
#include <cassert>
|
|
|
|
|
#include "limonp/Logging.hpp"
|
|
|
|
|
#include "DictTrie.hpp"
|
|
|
|
|
#include "SegmentTagged.hpp"
|
|
|
|
|
#include "PosTagger.hpp"
|
|
|
|
|
|
|
|
|
|
namespace cppjieba {
|
|
|
|
|
|
|
|
|
|
class MPSegment: public SegmentTagged {
|
2021-04-26 15:06:47 +08:00
|
|
|
|
public:
|
|
|
|
|
MPSegment(const DictTrie* dictTrie)
|
2021-05-22 09:18:35 +08:00
|
|
|
|
: dictTrie_(dictTrie) {
|
2021-04-26 15:06:47 +08:00
|
|
|
|
assert(dictTrie_);
|
|
|
|
|
}
|
2021-05-22 09:18:35 +08:00
|
|
|
|
~MPSegment() { }
|
2020-12-31 21:14:13 +08:00
|
|
|
|
|
2021-05-22 09:18:35 +08:00
|
|
|
|
virtual void Cut(RuneStrArray::const_iterator begin,
|
|
|
|
|
RuneStrArray::const_iterator end,
|
|
|
|
|
vector<WordRange>& words,
|
|
|
|
|
bool, size_t max_word_len) const override {
|
2021-07-07 11:37:00 +08:00
|
|
|
|
// vector<DatDag> dags;
|
|
|
|
|
// dictTrie_->Find(begin, end, dags, max_word_len);//依据DAG词典生成DAG--jxx
|
|
|
|
|
// CalcDP(dags);//动态规划(Dynamic Programming,DP),根据DAG计算最优动态规划路径--jxx
|
|
|
|
|
// CutByDag(begin, end, dags, words);//依据DAG最优路径分词--jxx
|
|
|
|
|
dictTrie_->Find(begin, end, words, max_word_len);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
}
|
2020-12-31 21:14:13 +08:00
|
|
|
|
|
2021-05-22 09:18:35 +08:00
|
|
|
|
virtual void CutWithSentence(const string& s, RuneStrArray::const_iterator begin, RuneStrArray::const_iterator end, vector<string>& res, bool hmm,
|
|
|
|
|
size_t) const override {
|
|
|
|
|
|
2020-12-31 21:14:13 +08:00
|
|
|
|
}
|
2021-06-07 15:37:06 +08:00
|
|
|
|
virtual void CutWithSentence(const string& s, RuneStrArray::const_iterator begin, RuneStrArray::const_iterator end, unordered_map<string, KeyWord>& res, bool hmm,
|
|
|
|
|
size_t) const override {
|
2020-12-31 21:14:13 +08:00
|
|
|
|
|
2021-06-07 15:37:06 +08:00
|
|
|
|
}
|
2021-05-22 09:18:35 +08:00
|
|
|
|
const DictTrie* GetDictTrie() const override {
|
2021-04-26 15:06:47 +08:00
|
|
|
|
return dictTrie_;
|
|
|
|
|
}
|
2020-12-31 21:14:13 +08:00
|
|
|
|
|
2021-05-22 09:18:35 +08:00
|
|
|
|
bool Tag(const string& src, vector<pair<string, string> >& res) const override {
|
2021-04-26 15:06:47 +08:00
|
|
|
|
return tagger_.Tag(src, res, *this);
|
|
|
|
|
}
|
2020-12-31 21:14:13 +08:00
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
bool IsUserDictSingleChineseWord(const Rune& value) const {
|
|
|
|
|
return dictTrie_->IsUserDictSingleChineseWord(value);
|
|
|
|
|
}
|
|
|
|
|
private:
|
2021-07-07 11:37:00 +08:00
|
|
|
|
/*
|
2021-05-22 09:18:35 +08:00
|
|
|
|
void CalcDP(vector<DatDag>& dags) const {
|
2021-06-07 15:37:06 +08:00
|
|
|
|
double val(0);
|
2021-05-22 09:18:35 +08:00
|
|
|
|
for (auto rit = dags.rbegin(); rit != dags.rend(); rit++) {
|
|
|
|
|
rit->max_next = -1;
|
|
|
|
|
rit->max_weight = MIN_DOUBLE;
|
|
|
|
|
|
|
|
|
|
for (const auto & it : rit->nexts) {
|
|
|
|
|
const auto nextPos = it.first;
|
2021-06-07 15:37:06 +08:00
|
|
|
|
val = dictTrie_->GetMinWeight();
|
2021-05-22 09:18:35 +08:00
|
|
|
|
|
|
|
|
|
if (nullptr != it.second) {
|
|
|
|
|
val = it.second->weight;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
}
|
2020-12-31 21:14:13 +08:00
|
|
|
|
|
2021-05-22 09:18:35 +08:00
|
|
|
|
if (nextPos < dags.size()) {
|
|
|
|
|
val += dags[nextPos].max_weight;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
}
|
2021-05-22 09:18:35 +08:00
|
|
|
|
|
|
|
|
|
if ((nextPos <= dags.size()) && (val > rit->max_weight)) {
|
|
|
|
|
rit->max_weight = val;
|
|
|
|
|
rit->max_next = nextPos;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-31 21:14:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-07 11:37:00 +08:00
|
|
|
|
*/
|
|
|
|
|
/* 倒叙方式重写CalcDP函数,初步测试未发现问题*/
|
|
|
|
|
void CalcDP(vector<DatDag>& dags) const {
|
|
|
|
|
double val(0);
|
|
|
|
|
size_t size = dags.size();
|
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < size; i++) {
|
|
|
|
|
dags[size - 1 - i].max_next = -1;
|
|
|
|
|
dags[size - 1 - i].max_weight = MIN_DOUBLE;
|
|
|
|
|
|
|
|
|
|
for (const auto & it : dags[size - 1 - i].nexts) {
|
|
|
|
|
const auto nextPos = it.first;
|
|
|
|
|
val = dictTrie_->GetMinWeight();
|
|
|
|
|
|
|
|
|
|
if (nullptr != it.second) {
|
|
|
|
|
val = it.second->weight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (nextPos < dags.size()) {
|
|
|
|
|
val += dags[nextPos].max_weight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((nextPos <= dags.size()) && (val > dags[size - 1 - i].max_weight)) {
|
|
|
|
|
dags[size - 1 - i].max_weight = val;
|
|
|
|
|
dags[size - 1 - i].max_next = nextPos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-22 09:18:35 +08:00
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void CutByDag(RuneStrArray::const_iterator begin,
|
2021-05-22 09:18:35 +08:00
|
|
|
|
RuneStrArray::const_iterator,
|
|
|
|
|
const vector<DatDag>& dags,
|
2021-04-26 15:06:47 +08:00
|
|
|
|
vector<WordRange>& words) const {
|
2021-05-22 09:18:35 +08:00
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < dags.size();) {
|
|
|
|
|
const auto next = dags[i].max_next;
|
|
|
|
|
assert(next > i);
|
|
|
|
|
assert(next <= dags.size());
|
|
|
|
|
WordRange wr(begin + i, begin + next - 1);
|
|
|
|
|
words.push_back(wr);
|
|
|
|
|
i = next;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
}
|
2020-12-31 21:14:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
const DictTrie* dictTrie_;
|
|
|
|
|
PosTagger tagger_;
|
2020-12-31 21:14:13 +08:00
|
|
|
|
|
|
|
|
|
}; // class MPSegment
|
|
|
|
|
|
|
|
|
|
} // namespace cppjieba
|
|
|
|
|
|