pkuseg 的一个错误

最近在使用pkuseg进行分词,刚接触不久

直接执行了下述代码:

但是会有这个错误出现:

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "F:\Python3\p3\lib\multiprocessing\spawn.py", line 105, in spawn_main
    exitcode = _main(fd)
  File "F:\Python3\p3\lib\multiprocessing\spawn.py", line 114, in _main
    prepare(preparation_data)
  File "F:\Python3\p3\lib\multiprocessing\spawn.py", line 225, in prepare
    _fixup_main_from_path(data['init_main_from_path'])
  File "F:\Python3\p3\lib\multiprocessing\spawn.py", line 277, in _fixup_main_from_path
    run_name="__mp_main__")
  File "F:\Python3\p3\lib\runpy.py", line 263, in run_path
    pkg_name=pkg_name, script_name=fname)
  File "F:\Python3\p3\lib\runpy.py", line 96, in _run_module_code
    mod_name, mod_spec, pkg_name, script_name)
  File "F:\Python3\p3\lib\runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "G:\untitled2\lungDivideByPkuSeg.py", line 3, in <module>
    pkuseg.test('G:\\untitled2\\testAf.txt','G:\\untitled2\\lungDividePkusegMul.txt',nthread=20)
  File "F:\Python3\p3\lib\site-packages\pkuseg\__init__.py", line 401, in test
    input_file, output_file, nthread, model_name, user_dict, verbose
  File "F:\Python3\p3\lib\site-packages\pkuseg\__init__.py", line 354, in _test_multi_proc
    proc.start()
  File "F:\Python3\p3\lib\multiprocessing\process.py", line 112, in start
    self._popen = self._Popen(self)
  File "F:\Python3\p3\lib\multiprocessing\context.py", line 223, in _Popen
    return _default_context.get_context().Process._Popen(process_obj)
  File "F:\Python3\p3\lib\multiprocessing\context.py", line 322, in _Popen
    return Popen(process_obj)
  File "F:\Python3\p3\lib\multiprocessing\popen_spawn_win32.py", line 33, in __init__
    prep_data = spawn.get_preparation_data(process_obj._name)
  File "F:\Python3\p3\lib\multiprocessing\spawn.py", line 143, in get_preparation_data
    _check_not_importing_main()
  File "F:\Python3\p3\lib\multiprocessing\spawn.py", line 136, in _check_not_importing_main
    is not going to be frozen to produce an executable.''')
RuntimeError:
        An attempt has been made to start a new process before the
        current process has finished its bootstrapping phase.

        This probably means that you are not using fork to start your
        child processes and you have forgotten to use the proper idiom
        in the main module:

            if __name__ == '__main__':
                freeze_support()
                ...

        The "freeze_support()" line can be omitted if the program
        is not going to be frozen to produce an executable.
Traceback (most recent call last):
  File "G:/untitled2/lungDivideByPkuSeg.py", line 3, in <module>
    pkuseg.test('G:\\untitled2\\testAf.txt','G:\\untitled2\\lungDividePkusegMul.txt',nthread=20)
  File "F:\Python3\p3\lib\site-packages\pkuseg\__init__.py", line 401, in test
    input_file, output_file, nthread, model_name, user_dict, verbose
  File "F:\Python3\p3\lib\site-packages\pkuseg\__init__.py", line 354, in _test_multi_proc
    proc.start()
  File "F:\Python3\p3\lib\multiprocessing\process.py", line 112, in start
    self._popen = self._Popen(self)
  File "F:\Python3\p3\lib\multiprocessing\context.py", line 223, in _Popen
    return _default_context.get_context().Process._Popen(process_obj)
  File "F:\Python3\p3\lib\multiprocessing\context.py", line 322, in _Popen
    return Popen(process_obj)
  File "F:\Python3\p3\lib\multiprocessing\popen_spawn_win32.py", line 65, in __init__
    reduction.dump(process_obj, to_child)
  File "F:\Python3\p3\lib\multiprocessing\reduction.py", line 60, in dump
    ForkingPickler(file, protocol).dump(obj)
BrokenPipeError: [Errno 32] Broken pipe

最后发现是因为缺少了

if __name__ == '__main__':的保护而导致子进程多次运行。

修改如下后,顺利完成任务:

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值