mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
finished viterbi
This commit is contained in:
parent
d4b69f9e58
commit
bda660dc66
@ -6,6 +6,14 @@ namespace CppJieba
|
|||||||
{
|
{
|
||||||
memset(_startProb, 0, sizeof(_startProb));
|
memset(_startProb, 0, sizeof(_startProb));
|
||||||
memset(_transProb, 0, sizeof(_transProb));
|
memset(_transProb, 0, sizeof(_transProb));
|
||||||
|
_statMap[0] = 'B';
|
||||||
|
_statMap[1] = 'E';
|
||||||
|
_statMap[2] = 'M';
|
||||||
|
_statMap[3] = 'S';
|
||||||
|
_emitProbVec.push_back(&_emitProbB);
|
||||||
|
_emitProbVec.push_back(&_emitProbE);
|
||||||
|
_emitProbVec.push_back(&_emitProbM);
|
||||||
|
_emitProbVec.push_back(&_emitProbS);
|
||||||
}
|
}
|
||||||
|
|
||||||
HMMSegment::~HMMSegment()
|
HMMSegment::~HMMSegment()
|
||||||
@ -29,7 +37,6 @@ namespace CppJieba
|
|||||||
string line;
|
string line;
|
||||||
vector<string> tmp;
|
vector<string> tmp;
|
||||||
vector<string> tmp2;
|
vector<string> tmp2;
|
||||||
|
|
||||||
//load _startProb
|
//load _startProb
|
||||||
if(!_getLine(ifile, line))
|
if(!_getLine(ifile, line))
|
||||||
{
|
{
|
||||||
@ -94,6 +101,142 @@ namespace CppJieba
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool HMMSegment::cut(const string& str, vector<string>& res)
|
||||||
|
{
|
||||||
|
if(str.empty())
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
vector<uint16_t> unico;
|
||||||
|
vector<uint> status;
|
||||||
|
vector<uint16_t>::iterator begin, left, right;
|
||||||
|
if(!TransCode::strToVec(str, unico))
|
||||||
|
|
||||||
|
{
|
||||||
|
LogError("TransCode failed.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!viterbi(unico, status))
|
||||||
|
{
|
||||||
|
LogError("viterbi failed.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
begin = unico.begin();
|
||||||
|
res.clear();
|
||||||
|
for(uint i =0; i< status.size(); i++)
|
||||||
|
{
|
||||||
|
switch(status[i])
|
||||||
|
{
|
||||||
|
case B:
|
||||||
|
left = begin + i;
|
||||||
|
break;
|
||||||
|
case E:
|
||||||
|
right = begin + i + 1;
|
||||||
|
res.push_back(TransCode::vecToStr(left, right));
|
||||||
|
break;
|
||||||
|
case S:
|
||||||
|
res.push_back(TransCode::vecToStr(begin + i, begin + i +1));
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool HMMSegment::viterbi(const vector<uint16_t>& unico, vector<uint>& status)
|
||||||
|
{
|
||||||
|
if(unico.empty())
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t Y = STATUS_SUM;
|
||||||
|
size_t X = unico.size();
|
||||||
|
size_t XYSize = X * Y;
|
||||||
|
int * path;
|
||||||
|
double * weight;
|
||||||
|
uint now, old, stat;
|
||||||
|
double tmp, endE, endS;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
path = new int [XYSize];
|
||||||
|
weight = new double [XYSize];
|
||||||
|
}
|
||||||
|
catch(const std::bad_alloc&)
|
||||||
|
{
|
||||||
|
LogError("bad_alloc");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(NULL == path || NULL == weight)
|
||||||
|
{
|
||||||
|
LogError("bad_alloc");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//start
|
||||||
|
for(uint y = 0; y < Y; y++)
|
||||||
|
{
|
||||||
|
weight[0 + y * X] = _startProb[y] + _getEmitProb(_emitProbVec[y], unico[0], MIN_DOUBLE);
|
||||||
|
path[0 + y * X] = -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
//process
|
||||||
|
for(uint x = 1; x < X; x++)
|
||||||
|
{
|
||||||
|
for(uint y = 0; y < Y; y++)
|
||||||
|
{
|
||||||
|
now = x + y*X;
|
||||||
|
weight[now] = MIN_DOUBLE;
|
||||||
|
for(uint preY = 0; preY < Y; preY++)
|
||||||
|
{
|
||||||
|
old = x - 1 + preY * X;
|
||||||
|
tmp = weight[old] + _transProb[preY][y] + _getEmitProb(_emitProbVec[y], unico[x], MIN_DOUBLE);
|
||||||
|
//cout<<__FILE__<<__LINE__<<endl;
|
||||||
|
//cout<<MIN_DOUBLE+MIN_DOUBLE+MIN_DOUBLE<<endl;
|
||||||
|
//cout<<weight[old]<<":"<<_transProb[preY][y]<<":"<<_getEmitProb(_emitProbVec[y], unico[x], MIN_DOUBLE)<<endl;
|
||||||
|
//cout<<tmp<<endl;
|
||||||
|
if(tmp > weight[now])
|
||||||
|
{
|
||||||
|
weight[now] = tmp;
|
||||||
|
path[now] = preY;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//cout<<__FILE__<<__LINE__<<endl;
|
||||||
|
//cout<<x<<":"<<y<<":"<<weight[now]<<endl;
|
||||||
|
//getchar();
|
||||||
|
}
|
||||||
|
//cout<<_getEmitProb(_emitProbB, unico[x], MIN_DOUBLE)<<endl;
|
||||||
|
//getchar();
|
||||||
|
}
|
||||||
|
|
||||||
|
endE = weight[X-1+E*X];
|
||||||
|
endS = weight[X-1+S*X];
|
||||||
|
stat = 0;
|
||||||
|
if(endE > endS)
|
||||||
|
{
|
||||||
|
stat = E;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
stat = S;
|
||||||
|
}
|
||||||
|
|
||||||
|
status.assign(X, 0);
|
||||||
|
for(int x = X -1 ; x >= 0; x--)
|
||||||
|
{
|
||||||
|
status[x] = stat;
|
||||||
|
stat = path[x + stat*X];
|
||||||
|
}
|
||||||
|
|
||||||
|
delete [] path;
|
||||||
|
delete [] weight;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
bool HMMSegment::_getLine(ifstream& ifile, string& line)
|
bool HMMSegment::_getLine(ifstream& ifile, string& line)
|
||||||
{
|
{
|
||||||
while(getline(ifile, line))
|
while(getline(ifile, line))
|
||||||
@ -150,18 +293,46 @@ namespace CppJieba
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
double HMMSegment::_getEmitProb(const EmitProbMap& mp, uint16_t key, double defVal)
|
||||||
|
{
|
||||||
|
EmitProbMap::const_iterator cit = mp.find(key);
|
||||||
|
if(cit == mp.end())
|
||||||
|
{
|
||||||
|
return defVal;
|
||||||
|
}
|
||||||
|
return cit->second;
|
||||||
|
}
|
||||||
|
|
||||||
|
double HMMSegment::_getEmitProb(const EmitProbMap* ptMp, uint16_t key, double defVal)
|
||||||
|
{
|
||||||
|
EmitProbMap::const_iterator cit = ptMp->find(key);
|
||||||
|
if(cit == ptMp->end())
|
||||||
|
{
|
||||||
|
return defVal;
|
||||||
|
}
|
||||||
|
return cit->second;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#ifdef HMMSEGMENT_UT
|
#ifdef HMMSEGMENT_UT
|
||||||
using namespace CppJieba;
|
using namespace CppJieba;
|
||||||
|
|
||||||
|
|
||||||
|
size_t add(size_t a, size_t b)
|
||||||
|
{
|
||||||
|
return a*b;
|
||||||
|
}
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
TransCode::setUtf8Enc();
|
TransCode::setUtf8Enc();
|
||||||
HMMSegment hmm;
|
HMMSegment hmm;
|
||||||
hmm.loadModel("../dicts/hmm_model.utf8");
|
hmm.loadModel("../dicts/hmm_model.utf8");
|
||||||
//cout<<MIN_DOUBLE<<endl;
|
vector<string> res;
|
||||||
|
hmm.cut("小明硕士毕业于北邮网络研究院", res);
|
||||||
|
cout<<joinStr(res, "/")<<endl;
|
||||||
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -18,13 +18,15 @@ namespace CppJieba
|
|||||||
* STATUS:
|
* STATUS:
|
||||||
* 0:B, 1:E, 2:M, 3:S
|
* 0:B, 1:E, 2:M, 3:S
|
||||||
* */
|
* */
|
||||||
enum {STATUS_SUM = 4};
|
enum {B = 0, E = 1, M = 2, S = 3, STATUS_SUM = 4};
|
||||||
|
char _statMap[STATUS_SUM];
|
||||||
double _startProb[STATUS_SUM];
|
double _startProb[STATUS_SUM];
|
||||||
double _transProb[STATUS_SUM][STATUS_SUM];
|
double _transProb[STATUS_SUM][STATUS_SUM];
|
||||||
EmitProbMap _emitProbB;
|
EmitProbMap _emitProbB;
|
||||||
EmitProbMap _emitProbE;
|
EmitProbMap _emitProbE;
|
||||||
EmitProbMap _emitProbM;
|
EmitProbMap _emitProbM;
|
||||||
EmitProbMap _emitProbS;
|
EmitProbMap _emitProbS;
|
||||||
|
vector<EmitProbMap* > _emitProbVec;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
HMMSegment();
|
HMMSegment();
|
||||||
@ -34,10 +36,16 @@ namespace CppJieba
|
|||||||
bool dispose();
|
bool dispose();
|
||||||
public:
|
public:
|
||||||
bool loadModel(const char* const filePath);
|
bool loadModel(const char* const filePath);
|
||||||
|
bool cut(const string& str, vector<string>& res);
|
||||||
|
bool viterbi(const vector<uint16_t>& unico, vector<uint>& status);
|
||||||
private:
|
private:
|
||||||
bool _getLine(ifstream& ifile, string& line);
|
bool _getLine(ifstream& ifile, string& line);
|
||||||
bool _loadEmitProb(const string& line, EmitProbMap& mp);
|
bool _loadEmitProb(const string& line, EmitProbMap& mp);
|
||||||
bool _decodeOne(const string& str, uint16_t& res);
|
bool _decodeOne(const string& str, uint16_t& res);
|
||||||
|
double _getEmitProb(const EmitProbMap& mp, uint16_t key, double defVal);
|
||||||
|
double _getEmitProb(const EmitProbMap* ptMp, uint16_t key, double defVal);
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,26 +10,28 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <hash_map>
|
//#include <hash_map>
|
||||||
|
#include <tr1/unordered_map>
|
||||||
//#include <ext/hash_map>
|
//#include <ext/hash_map>
|
||||||
|
|
||||||
namespace CppJieba
|
namespace CppJieba
|
||||||
{
|
{
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using __gnu_cxx::hash_map;
|
using std::tr1::unordered_map;
|
||||||
|
//using __gnu_cxx::hash_map;
|
||||||
//using namespace stdext;
|
//using namespace stdext;
|
||||||
//typedefs
|
//typedefs
|
||||||
const double MIN_DOUBLE = -3.14e+100;
|
|
||||||
const double MAX_DOUBLE = 3.14e+100;
|
|
||||||
typedef unsigned int uint;
|
typedef unsigned int uint;
|
||||||
typedef std::vector<std::string>::iterator VSI;
|
typedef std::vector<std::string>::iterator VSI;
|
||||||
typedef std::vector<uint16_t> VUINT16;
|
typedef std::vector<uint16_t> VUINT16;
|
||||||
typedef std::vector<uint16_t>::const_iterator VUINT16_CONST_ITER;
|
typedef std::vector<uint16_t>::const_iterator VUINT16_CONST_ITER;
|
||||||
typedef hash_map<uint16_t, struct TrieNode*> TrieNodeMap;
|
typedef unordered_map<uint16_t, struct TrieNode*> TrieNodeMap;
|
||||||
typedef hash_map<uint16_t, double> EmitProbMap;
|
typedef unordered_map<uint16_t, double> EmitProbMap;
|
||||||
|
|
||||||
|
|
||||||
|
const double MIN_DOUBLE = -3.14e+100;
|
||||||
|
const double MAX_DOUBLE = 3.14e+100;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user