def normalizedLogUniqueness(title, smooth=1, returntype=collections.Counter): return getLogUnisonUniqueness(getWordCountWiki(title), title.lower(), smooth, returntype)
def getWikiPairUniqueness(title1, title2, smooth=1, returntype=collections.Counter): return getLogPairUniqueness(getWordCountWiki(title1), getWordCountWiki(title2), smooth, returntype)