__init__(): incompatible constructor arguments. The following argument types are supported: 1. pyltp.Segmentor(model_path: str, lexicon_path: str = None, force_lexicon_path: str = None)什么意思
时间: 2023-11-09 13:08:35 浏览: 293
TypeError: _queue_reduction(): incompatible function arguments.
这个错误提示表示 __init__() 方法的构造参数不兼容。pyltp.Segmentor支持以下参数类型:
1. model_path: str,指定分词模型的路径。
2. lexicon_path: str,指定自定义词典的路径。
3. force_lexicon_path: str,指定强制使用自定义词典的路径。
可能是你传入的参数类型或数量与这些支持的参数类型不匹配,导致出现了这个错误提示。你需要检查一下传入的参数类型和数量是否正确。
阅读全文