コード例 #1
0
ファイル: spectrum.py プロジェクト: gpka/autotagger
def normalizedLogUniqueness(title, smooth=1, returntype=collections.Counter):
    return getLogUnisonUniqueness(getWordCountWiki(title), title.lower(), smooth, returntype)
コード例 #2
0
ファイル: spectrum.py プロジェクト: gpka/autotagger
def getWikiPairUniqueness(title1, title2, smooth=1, returntype=collections.Counter):
    return getLogPairUniqueness(getWordCountWiki(title1), getWordCountWiki(title2), smooth, returntype)