1. 官方文檔及參考連接java
2. 源碼解析算法
分析 com.hankcs.demo包下的DemoCustomDictionary.java 基於自定義詞典使用標準分詞HanLP.segment(text)的大體流程(HanLP版本1.5.3)。首先把自定義詞添加到詞庫中:spa
CustomDictionary.add("攻城獅");orm
CustomDictionary.insert("白富美", "nz 1024");//指定了自定義詞的詞性和詞頻對象
CustomDictionary.add("單身狗", "nz 1024 n 1")//一個詞能夠有多個詞性blog
添加詞庫的過程包括:文檔
public static boolean add(String word)get
{源碼
if (HanLP.Config.Normalization) word = CharTable.convert(word);博客
if (contains(word)) return false;//判斷DoubleArrayTrie和BinTrie是否已經存在word
return insert(word, null);
}
public static boolean insert(String word, String natureWithFrequency)
{
if (word == null) return false;
if (HanLP.Config.Normalization) word = CharTable.convert(word);
CoreDictionary.Attribute att = natureWithFrequency == null ? new CoreDictionary.Attribute(Nature.nz, 1) : CoreDictionary.Attribute.create(natureWithFrequency);
if (att == null) return false;
if (dat.set(word, att)) return true;
//"攻城獅"是動態加入的詞語. 在覈心詞典中未匹配到,在自定義詞典中也未匹配到, 動態增刪的詞語使用BinTrie保存
if (trie == null) trie = new BinTrie<CoreDictionary.Attribute>();
trie.put(word, att);
return true;
}
將自定義添加到BinTrie樹後,接下來是使用分詞算法分詞了。假設使用的標準分詞(viterbi算法來分詞):
List<Vertex> vertexList = viterbi(wordNetAll);
分詞具體過程可參考:
分詞完成以後,返回的是一個 Vertex 列表。以下圖所示:
而後根據 是否開啓用戶自定義詞典 配置來決定將分詞結果與用戶添加的自定義詞進行合併。默認狀況下,config.useCustomDictionary是true,即開啓用戶自定義詞典。
if (config.useCustomDictionary)
{
if (config.indexMode > 0)
combineByCustomDictionary(vertexList, wordNetAll);
else combineByCustomDictionary(vertexList);
}
combineByCustomDictionary(vertexList)由兩個過程組成:
//DAT合併
DoubleArrayTrie<CoreDictionary.Attribute> dat = CustomDictionary.dat;
....
// BinTrie合併
if (CustomDictionary.trie != null)//用戶經過CustomDictionary.add("攻城獅"); 動態增長了詞典
{
....
合併以後的結果以下:
3. 關於用戶自定義詞典
總結一下,開啓自定義分詞的流程基本以下:
HanLP做者在HanLP issue783:上面說:詞典不等於分詞、分詞不等於天然語言處理;推薦使用語料而不是詞典去修正統計模型。因爲分詞算法不能將一些「特定領域」的句子分詞正確,因而爲了糾正分詞結果,把想要的分詞結果添加到自定義詞庫中,但最好使用語料來糾正分詞的結果。另外,做者還說了在之後版本中不保證繼續支持動態添加自定義詞典。以上是閱讀源碼過程當中的一些粗淺理解,僅供參考。
文章轉載自hapjin 的博客