Skip to main content

Chinese word segmentation toolkit for spaCy (fork of pkuseg-python)

Project description

spacy-pkuseg: Chinese word segmentation toolkit for spaCy

This package is a fork of pkuseg-python that simplifies installation and serialization for use with spaCy. The underlying segmentation tools remain unmodified.


pkuseg:一个多领域中文分词工具包 (English Version)

pkuseg 是基于论文[Luo et. al, 2019]的工具包。其简单易用,支持细分领域分词,有效提升了分词准确度。

目录

主要亮点

pkuseg具有如下几个特点:

  1. 多领域分词。不同于以往的通用中文分词工具,此工具包同时致力于为不同领域的数据提供个性化的预训练模型。根据待分词文本的领域特点,用户可以自由地选择不同的模型。 我们目前支持了新闻领域,网络领域,医药领域,旅游领域,以及混合领域的分词预训练模型。在使用中,如果用户明确待分词的领域,可加载对应的模型进行分词。如果用户无法确定具体领域,推荐使用在混合领域上训练的通用模型。各领域分词样例可参考 example.txt
  2. 更高的分词准确率。相比于其他的分词工具包,当使用相同的训练数据和测试数据,pkuseg可以取得更高的分词准确率。
  3. 支持用户自训练模型。支持用户使用全新的标注数据进行训练。
  4. 支持词性标注。

编译和安装

  • 目前仅支持python3
  • 为了获得好的效果和速度,强烈建议大家通过pip install更新到目前的最新版本
  1. 通过PyPI安装(自带模型文件):

    pip3 install pkuseg
    之后通过import pkuseg来引用
    

    建议更新到最新版本以获得更好的开箱体验:

    pip3 install -U pkuseg
    
  2. 如果PyPI官方源下载速度不理想,建议使用镜像源,比如:
    初次安装:

    pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple pkuseg
    

    更新:

    pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple -U pkuseg
    
  3. 如果不使用pip安装方式,选择从GitHub下载,可运行以下命令安装:

    python setup.py build_ext -i
    

    GitHub的代码并不包括预训练模型,因此需要用户自行下载或训练模型,预训练模型可详见release。使用时需设定"model_name"为模型文件。

注意:安装方式1和2目前仅支持linux(ubuntu)、mac、windows 64 位的python3版本。如果非以上系统,请使用安装方式3进行本地编译安装。

各类分词工具包的性能对比

我们选择jieba、THULAC等国内代表分词工具包与pkuseg做性能比较,详细设置可参考实验环境

细领域训练及测试结果

以下是在不同数据集上的对比结果:

MSRA Precision Recall F-score
jieba 87.01 89.88 88.42
THULAC 95.60 95.91 95.71
pkuseg 96.94 96.81 96.88
WEIBO Precision Recall F-score
jieba 87.79 87.54 87.66
THULAC 93.40 92.40 92.87
pkuseg 93.78 94.65 94.21

默认模型在不同领域的测试效果

考虑到很多用户在尝试分词工具的时候,大多数时候会使用工具包自带模型测试。为了直接对比“初始”性能,我们也比较了各个工具包的默认模型在不同领域的测试效果。请注意,这样的比较只是为了说明默认情况下的效果,并不一定是公平的。

Default MSRA CTB8 PKU WEIBO All Average
jieba 81.45 79.58 81.83 83.56 81.61
THULAC 85.55 87.84 92.29 86.65 88.08
pkuseg 87.29 91.77 92.68 93.43 91.29

其中,All Average显示的是在所有测试集上F-score的平均。

更多详细比较可参见和现有工具包的比较

使用方式

代码示例

以下代码示例适用于python交互式环境。

代码示例1:使用默认配置进行分词(如果用户无法确定分词领域,推荐使用默认模型分词

import pkuseg

seg = pkuseg.pkuseg()           # 以默认配置加载模型
text = seg.cut('我爱北京天安门')  # 进行分词
print(text)

代码示例2:细领域分词(如果用户明确分词领域,推荐使用细领域模型分词

import pkuseg

seg = pkuseg.pkuseg(model_name='medicine')  # 程序会自动下载所对应的细领域模型
text = seg.cut('我爱北京天安门')              # 进行分词
print(text)

代码示例3:分词同时进行词性标注,各词性标签的详细含义可参考 tags.txt

import pkuseg

seg = pkuseg.pkuseg(postag=True)  # 开启词性标注功能
text = seg.cut('我爱北京天安门')    # 进行分词和词性标注
print(text)

代码示例4:对文件分词

import pkuseg

# 对input.txt的文件分词输出到output.txt中
# 开20个进程
pkuseg.test('input.txt', 'output.txt', nthread=20)     

其他使用示例可参见详细代码示例

参数说明

模型配置

pkuseg.pkuseg(model_name = "default", user_dict = "default", postag = False)
	model_name		模型路径。
			        "default",默认参数,表示使用我们预训练好的混合领域模型(仅对pip下载的用户)。
				"news", 使用新闻领域模型。
				"web", 使用网络领域模型。
				"medicine", 使用医药领域模型。
				"tourism", 使用旅游领域模型。
			        model_path, 从用户指定路径加载模型。
	user_dict		设置用户词典。
				"default", 默认参数,使用我们提供的词典。
				None, 不使用词典。
				dict_path, 在使用默认词典的同时会额外使用用户自定义词典,可以填自己的用户词典的路径,词典格式为一行一个词(如果选择进行词性标注并且已知该词的词性,则在该行写下词和词性,中间用tab字符隔开)。
	postag		        是否进行词性分析。
				False, 默认参数,只进行分词,不进行词性标注。
				True, 会在分词的同时进行词性标注。

对文件进行分词

pkuseg.test(readFile, outputFile, model_name = "default", user_dict = "default", postag = False, nthread = 10)
	readFile		输入文件路径。
	outputFile		输出文件路径。
	model_name		模型路径。同pkuseg.pkuseg
	user_dict		设置用户词典。同pkuseg.pkuseg
	postag			设置是否开启词性分析功能。同pkuseg.pkuseg
	nthread			测试时开的进程数。

模型训练

pkuseg.train(trainFile, testFile, savedir, train_iter = 20, init_model = None)
	trainFile		训练文件路径。
	testFile		测试文件路径。
	savedir			训练模型的保存路径。
	train_iter		训练轮数。
	init_model		初始化模型,默认为None表示使用默认初始化,用户可以填自己想要初始化的模型的路径如init_model='./models/'。

多进程分词

当将以上代码示例置于文件中运行时,如涉及多进程功能,请务必使用if __name__ == '__main__'保护全局语句,详见多进程分词

预训练模型

从pip安装的用户在使用细领域分词功能时,只需要设置model_name字段为对应的领域即可,会自动下载对应的细领域模型。

从github下载的用户则需要自己下载对应的预训练模型,并设置model_name字段为预训练模型路径。预训练模型可以在release部分下载。以下是对预训练模型的说明:

  • news: 在MSRA(新闻语料)上训练的模型。

  • web: 在微博(网络文本语料)上训练的模型。

  • medicine: 在医药领域上训练的模型。

  • tourism: 在旅游领域上训练的模型。

  • mixed: 混合数据集训练的通用模型。随pip包附带的是此模型。

欢迎更多用户可以分享自己训练好的细分领域模型。

版本历史

详见版本历史

开源协议

  1. 本代码采用MIT许可证。
  2. 欢迎对该工具包提出任何宝贵意见和建议,请发邮件至jingjingxu@pku.edu.cn

论文引用

该代码包主要基于以下科研论文,如使用了本工具,请引用以下论文:


@article{pkuseg,
  author = {Luo, Ruixuan and Xu, Jingjing and Zhang, Yi and Ren, Xuancheng and Sun, Xu},
  journal = {CoRR},
  title = {PKUSEG: A Toolkit for Multi-Domain Chinese Word Segmentation.},
  url = {https://arxiv.org/abs/1906.11455},
  volume = {abs/1906.11455},
  year = 2019
}

其他相关论文

  • Xu Sun, Houfeng Wang, Wenjie Li. Fast Online Training with Frequency-Adaptive Learning Rates for Chinese Word Segmentation and New Word Detection. ACL. 2012.
  • Jingjing Xu and Xu Sun. Dependency-based gated recursive neural network for chinese word segmentation. ACL. 2016.
  • Jingjing Xu and Xu Sun. Transfer learning for low-resource chinese word segmentation with a novel neural network. NLPCC. 2017.

常见问题及解答

  1. 为什么要发布pkuseg?
  2. pkuseg使用了哪些技术?
  3. 无法使用多进程分词和训练功能,提示RuntimeError和BrokenPipeError。
  4. 是如何跟其它工具包在细领域数据上进行比较的?
  5. 在黑盒测试集上进行比较的话,效果如何?
  6. 如果我不了解待分词语料的所属领域呢?
  7. 如何看待在一些特定样例上的分词结果?
  8. 关于运行速度问题?
  9. 关于多进程速度问题?

致谢

感谢俞士汶教授(北京大学计算语言所)与邱立坤博士提供的训练数据集!

作者

Ruixuan Luo (罗睿轩), Jingjing Xu(许晶晶), Xuancheng Ren(任宣丞), Yi Zhang(张艺), Bingzhen Wei(位冰镇), Xu Sun (孙栩)

北京大学 语言计算与机器学习研究组

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spacy_pkuseg-0.0.32.tar.gz (2.1 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

spacy_pkuseg-0.0.32-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy_pkuseg-0.0.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy_pkuseg-0.0.32-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

spacy_pkuseg-0.0.32-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy_pkuseg-0.0.32-cp311-cp311-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy_pkuseg-0.0.32-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy_pkuseg-0.0.32-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy_pkuseg-0.0.32-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy_pkuseg-0.0.32-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy_pkuseg-0.0.32-cp310-cp310-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy_pkuseg-0.0.32-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy_pkuseg-0.0.32-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy_pkuseg-0.0.32-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy_pkuseg-0.0.32-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy_pkuseg-0.0.32-cp39-cp39-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy_pkuseg-0.0.32-cp38-cp38-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy_pkuseg-0.0.32-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy_pkuseg-0.0.32-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy_pkuseg-0.0.32-cp38-cp38-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy_pkuseg-0.0.32-cp38-cp38-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy_pkuseg-0.0.32-cp37-cp37m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy_pkuseg-0.0.32-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy_pkuseg-0.0.32-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy_pkuseg-0.0.32-cp37-cp37m-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy_pkuseg-0.0.32-cp36-cp36m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy_pkuseg-0.0.32-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy_pkuseg-0.0.32-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

Details for the file spacy_pkuseg-0.0.32.tar.gz.

File metadata

  • Download URL: spacy_pkuseg-0.0.32.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for spacy_pkuseg-0.0.32.tar.gz
Algorithm Hash digest
SHA256 f72d9365138e9083a5e78bba8e87190f85ad3f90adddb55f69c58aa862c8484c
MD5 9db1c5161f3e3971365951432bbacc35
BLAKE2b-256 64d21b8c54075d4acbe8587f25bb69b38fef617af78cfb6502381eba0703dd53

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6b1a6f8d1063bee5154b8b9cac7dd016ad2b6c3cec987118792d9a6e7e2b3723
MD5 8dfab5d49edbc920bc43a176c1f1cfe7
BLAKE2b-256 1675f9bfd3f788ed4f08c8a453401866ec66c2e366895fc6a34dac75f089a5bd

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c732b68e9a2922af580cb02dc1ac9f6e086525bc863e0e02249be1b00806cc18
MD5 22155103ace1f5923043abfce71f9dcd
BLAKE2b-256 69b91d72fca672cba76ef814b847f7d4464b00728e58794646c7928ad0b05a10

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d770fca181aabaad85585f581407689d4bb6e186d3e4f8431195aaf702e67005
MD5 0ea6340fa3fcbe849158f72e193516d9
BLAKE2b-256 315898d4f800618f5f95fc4540b6819648b37a9e5f2f54e4535b11273ac67e93

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e73c80f815cd19b04259ceebf9c11fbc4565bf96e456c7c463eb9e407a4d8853
MD5 f920ae6e7bebab61aa37e6714bd2044c
BLAKE2b-256 c4c74a30af7f074d572df0afb537fbd3ab9c4a107378c4f5caa986818f16ccbb

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a3f1f37e3b5bec1b69f13b4bf7df24e978a149968696b58637d8a7cc2107458
MD5 ab57f1cc66fd736d1a70539feaf9704d
BLAKE2b-256 6b55cf422f05cf9c9efa165d837a97eee0665e21a4ae450c20a53260a2749931

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a51a1c4407cc4de61a113cc7427498fc3ee7d52f6cd3a08203d9a304b6be4201
MD5 0a6e9ff7a5899aa0e77ff73d41619efd
BLAKE2b-256 e8000acfe225cc695a006a54aae201a6b7d0ac714636ddf2286cf644fa73f767

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 031a16ce2fda3613e0bb52ebb039f35ed22436eb9c98bb1d9cf45fec3c6d4c8e
MD5 46d69dc997def6cd986fe7f11735722d
BLAKE2b-256 a25f9dba3e0d2dcf770b42e8921ccdff15ab3923dcb8be292465524536f260fc

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c560758022877cb51e628d99722bd599a0c191a919d68957ad1c95351ab0940
MD5 48a88a1f108655f0472068d97d46ddfe
BLAKE2b-256 6d347fef131dcf4faa5aca72fa2bece13dc4c987b3d9206d015ab93abce916fe

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49445d0a5f04a10ccd567294b83a1f800214677416b1a56f5aebf2094854482b
MD5 c0bda3405ed2d94e0f1882845837c91e
BLAKE2b-256 00036b1bdb2d932c0c42ca31a6895941191294f6e0257dbf2e0ad7d911b7df79

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19f41a9f25615eedac34cc856a22796375ea3bc36e71d6f01e844a8873fe542a
MD5 3fce5be232952d7edbafe7d540a321a0
BLAKE2b-256 50b7a3828cb008227645193ef18c3920a1b38a137a4b1667ff7a91e535f87459

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 de70101e9efa1f40444229b7262355d900b90a9724fe5d8bf414b4692ed097a5
MD5 7eb90689b1033ac85e1ce20cdd9f0ba0
BLAKE2b-256 e8d6b10f23b9d7fe11b7668e7362a51ebf5b240fbfd7a622ce005eb1e3041c2c

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca8d8c88656263ae8dad6eb68869895ec430963b3f33352dd7b7e63ee79c69b6
MD5 354bd134a1004f71ad3150c20d880037
BLAKE2b-256 b9df29269cb058aa12b0be0f498ea8e5453704d7121a33d1cc98422b329724e8

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 549b2fb90521d7f4b3d4229a82bb904e244b1bf9775e410f645ff102d0e4f69a
MD5 b2fa4f0a50e055a65709e015c7fa3b39
BLAKE2b-256 27b93ae3b42f532d3b765bb56078b9790c0905c0d1238fc269060beaaed44252

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4094e46226db03ca155e83aa3f8d27cfcf5136a710a6736b07aa3f84e57b011
MD5 179955baedb988dafc26d8932c5d27fc
BLAKE2b-256 535b1a9c5b0fd51ceac3cbed58962c4374bdf7d23285a152807c6a7b130d3c76

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 087de8777695cf685d1a4abb336ca9f1fd0931b450c13e988e432e0cc2232b39
MD5 530d796f2214c0c44b5bb29ea5c8bc69
BLAKE2b-256 9928d3d16d5fa619a16a1decff81e9000c7b334f3ff379202f008ed594d3fdd1

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ea5261249a297ae47cc44072c623685be575f74f26a80aba9f388420892504d4
MD5 80b41b21e9cd8c25036d39699ee04777
BLAKE2b-256 9b49be4035cf65af4afbb1b2931185b6474745f7f3b8ddaadadfc2d567b9f704

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc23c4e23413c64618ab464794c27de5e4079c6348b71d1ddcedbb629af6a692
MD5 e343d3265431bb742eaf4661e4d5ef96
BLAKE2b-256 dbe33b2069359954909fe4aebfc0c20632eca516cfe505669ea36f26775a5ac3

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b21e4bf0bf6202b116a9c913bd9115cb7755a362cc7fc14eac5c805a4eb266b
MD5 8360da15f5a8f2978339ecee54feaebc
BLAKE2b-256 d44619ad3a2f9a60d955e91322cf1a2d2a6d8eccd844fe0880bc158e46340e79

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd07d9e259349774bd4c71620bc8755a0b7aa9e9802cb239b3ede297e937d20f
MD5 bcb2bd688747346f303d75685a87e65e
BLAKE2b-256 e6032ce3102c983dfc977ea1a61b2482aa1022e5ef7e6ed7e5c3b4caff7829d8

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d1f504cb167840e962613ed93d0a7fbef9fd8d4bd21de7872ea40208ea24d6c
MD5 1f093374670560dc67028c8e5db07b10
BLAKE2b-256 7076a4e0f7af643b5aeccfb129652f40effcc430fb0365873f4b7182d0e47823

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cf532a981cf0d2196d44d12288dd31875070ef28c57926d36b23e2e94fcfb5b6
MD5 fc3adeb820080aeb740c9116eeea199e
BLAKE2b-256 438dda3312394367ece12cb04378f7b56b383a5311d28fc783a9ec34a19a27fa

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a69b1f7e118e48a7e8cc52c37347d823db42da6f0c275dc9a4ddd3ea1e2aceb6
MD5 6e302f3b50a089adc4d81275949f43a1
BLAKE2b-256 8ec08153ac572f7dd89feaaf5c043d22389aec12252bcf6df95cb033e538d543

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f62318565ca9d2d8a16c45942c6fda292ba5b5cc382f2c5abd1451565ca22c4
MD5 b8f0c0bc053bacf1b3cf3d417613cc16
BLAKE2b-256 57af8049b2ebec85b0b18698a7f857f6f17453fd70192140c1a2467972af6071

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66e5f9cdfa6b1f2d5be062e71dfbffa8537d38b1d8a1f34ae30bd3df96753958
MD5 d9a87dd308b29a13435fad603256e508
BLAKE2b-256 c63f223aa4f885d4e90de6f1534ed69881ea2167327d2e254c23c2333b95617d

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 01f55e3226f7ef51740be7bdb49f252d765518d2481dcbb124c1d588ab87f82b
MD5 eb881cdd94c1d67051b91fc016123ac6
BLAKE2b-256 46bd4eb8e5408cc821715626b06d21eac0ac3516adc0986161cc07b9b357dac2

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81f53672925d60044c855a9b3b460932e037d40d854e5d8d040cc6ca092ae7fd
MD5 a07fdd7276202df5e777a943665a2fa8
BLAKE2b-256 5f56aa8cf232193492ca087c4e84dd91c2060f2ca9dfca43e5007cccdbdf0b9a

See more details on using hashes here.

File details

Details for the file spacy_pkuseg-0.0.32-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_pkuseg-0.0.32-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89bd1d6a16a8bde96983b9225e540d0144f387890b71fc99d72df65299302a8a
MD5 ac4ce8e930fa30d011a45deca2e30f51
BLAKE2b-256 15cd894def3decc77de41380d64ccda0ad84bcbb37dd3f099ac80a8e4ff8d7ee

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page