当前位置: 首页>>代码示例>>Python>>正文


Python Classifier.train_from_human_classification方法代码示例

本文整理汇总了Python中classifier.Classifier.train_from_human_classification方法的典型用法代码示例。如果您正苦于以下问题:Python Classifier.train_from_human_classification方法的具体用法?Python Classifier.train_from_human_classification怎么用?Python Classifier.train_from_human_classification使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在classifier.Classifier的用法示例。


在下文中一共展示了Classifier.train_from_human_classification方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: Classifier

# 需要导入模块: from classifier import Classifier [as 别名]
# 或者: from classifier.Classifier import train_from_human_classification [as 别名]
# classifier details
parser.add_option("-l", "--language", default='en', dest="language", help="Specify LANGUAGE, if not specified, default is 'en'", metavar="LANGUAGE")
parser.add_option("-a", "--low", default='0.4', dest="low", help="low threshold for classifier", metavar="LOW")
parser.add_option("-b", "--high", default='0.6', dest="high", help="high threshold for classifier", metavar="HIGH")

parser.add_option("-c", "--human-classify", dest="human_classify", help="Allows user to classify tweets and put them into <File>", metavar="FILE")
parser.add_option("-t", "--train", action="store_true", dest="train", default=False, help="Train Bayesian network")
parser.add_option("-e", "--export", action="store_true", dest="export", default=False, help="Export wordlist to XML")
parser.add_option("-s", "--specification", default=None, dest="specification", help="Set specification variable - for exporting XML containing this specification.", metavar="SPECIFICATION")
parser.add_option("-r", "--run-tests", dest="tests", help="Run tests on pickled <File> with classified tweets", metavar="FILE")
parser.add_option("-f", "--fix_hc", dest="fix", help="Fix old human classification", metavar="FILE")
parser.add_option("-m", "--m", dest="merge", help="Merge Human classification files", metavar="FILE")


(options, args) = parser.parse_args()
cl = Classifier(options.low, options.high)

# training Bayesian network
if options.train:
    cl.train(language=options.language)
if options.human_classify:
    cl.human_classify(options.human_classify, options.language)
if options.tests:
    cl.run_tests(options.tests, options.language)
if options.fix:
    cl.fix_old_human_classification2(options.fix)
if options.merge:
    cl.train_from_human_classification(options.merge, options.language)
if options.export:
    cl.export_to_xml(language=options.language, specification=options.specification)
开发者ID:,项目名称:,代码行数:32,代码来源:


注:本文中的classifier.Classifier.train_from_human_classification方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。