本文整理汇总了Python中feature_extractor.FeatureExtractor.bcv方法的典型用法代码示例。如果您正苦于以下问题:Python FeatureExtractor.bcv方法的具体用法?Python FeatureExtractor.bcv怎么用?Python FeatureExtractor.bcv使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类feature_extractor.FeatureExtractor
的用法示例。
在下文中一共展示了FeatureExtractor.bcv方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_single
# 需要导入模块: from feature_extractor import FeatureExtractor [as 别名]
# 或者: from feature_extractor.FeatureExtractor import bcv [as 别名]
def test_single(self):
for t in self.testdata:
fe = FeatureExtractor(t, "report")
fe.ngrams(n=5)
fe.chunk()
fe.dependency()
fe.ne()
fe.bcv()
fe.srl()
logging.debug(pformat(zip(fe.SUF, fe.POS)))
logging.debug(pformat(fe.features))
vec = DictVectorizer(sparse=True)
array_f = vec.fit_transform(fe.features).toarray()
# logging.debug(pformat(array_f))
raise Exception