本文整理汇总了Python中nltk.corpus.crubadan方法的典型用法代码示例。如果您正苦于以下问题:Python corpus.crubadan方法的具体用法?Python corpus.crubadan怎么用?Python corpus.crubadan使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nltk.corpus
的用法示例。
在下文中一共展示了corpus.crubadan方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from nltk import corpus [as 别名]
# 或者: from nltk.corpus import crubadan [as 别名]
def __init__(self):
if not re:
raise EnvironmentError("classify.textcat requires the regex module that "
"supports unicode. Try '$ pip install regex' and "
"see https://pypi.python.org/pypi/regex for "
"further details.")
from nltk.corpus import crubadan
self._corpus = crubadan
# Load all language ngrams into cache
for lang in self._corpus.langs():
self._corpus.lang_freq(lang)