ltp-extension


Nameltp-extension JSON
Version 0.1.13 PyPI version JSON
download
home_pagehttps://github.com/HIT-SCIR/ltp
SummaryRust Extension For Language Technology Platform(Python).
upload_time2024-04-04 19:17:41
maintainerNone
docs_urlNone
authorylfeng <ylfeng@ir.hit.edu.cn>
requires_pythonNone
licenseNone
keywords ltp nlp
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            | Language                             | version                                                                                                                                                                                                                                                                                                                   |
| ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [Python](python/interface/README.md) | [![LTP](https://img.shields.io/pypi/v/ltp?label=LTP)](https://pypi.org/project/ltp) [![LTP-Core](https://img.shields.io/pypi/v/ltp-core?label=LTP-Core)](https://pypi.org/project/ltp-core)   [![LTP-Extension](https://img.shields.io/pypi/v/ltp-extension?label=LTP-Extension)](https://pypi.org/project/ltp-extension) |
| [Rust](rust/ltp/README.md)           | [![LTP](https://img.shields.io/crates/v/ltp?label=LTP)](https://crates.io/crates/ltp)                                                                                                                                                                                                                                     |

# LTP extension For Python

LTP for Rust 对 Python 的绑定,用于提升 LTP 的速度,以及加入传统机器学习算法实现的中文信息处理工具。

| method | ltp 3.0(c++) | ap(1) | ap(8) | pa    | pa-i(0.5) | pa-ii(0.5) |
| ------ | ------------ | ----- | ----- | ----- | --------- | ---------- |
| cws    | 97.83        | 97.93 | 97.67 | 97.90 | 97.90     | 97.93      |
| pos    | 98.35        | 98.41 | 98.30 | 98.39 | 98.39     | 98.38      |
| ner    | 94.17        | 94.28 | 93.42 | 94.02 | 94.06     | 93.95      |

## 自行编译安装

```bash
maturin build --release -m python/extension/Cargo.toml --out dist --no-default-features --features="malloc"
# or 针对cpu优化
maturin build --release -m python/extension/Cargo.toml --out dist --no-default-features --features="malloc" -- -C target-cpu=native
```

## features

- [x] 分句
- [x] 任务
  - [x] 中文分词(cws)
    - [ ] 对数字、英文、网址、邮件的处理
    - [x] 支持自定义词典
  - [x] 词性标注(pos)
    - [ ] 支持自定义词典
  - [x] 命名实体识别(ner)
- [x] 算法
  - [x] 平均感知机(ap)
    - [x] 单线程平均感知机
    - [x] 多线程平均感知机
  - [x] 被动攻击算法(pa)
- [ ] 模型量化
- [ ] 在线学习
- [ ] 增量学习

## 性能测试

### 评测环境

- Python 3.10
- MacBook Pro (16-inch, 2019)
- 处理器: 2.6 GHz 六核Intel Core i7
- 内存: 16 GB 2667 MHz DDR4

> 注: 速度测试文件大小为 33.85 MB / 305041 行

### 分词

我们选择Jieba、Pkuseg、Thulac等国内代表分词软件与 LTP 做性能比较,根据第二届国际汉语分词测评发布的国际中文分词测评标准,对不同软件进行了速度和准确率测试。

在第二届国际汉语分词测评中,共有四家单位提供的测试语料(Academia Sinica、 City University 、Peking University(PKU)
、Microsoft Research(MSR)), 在评测提供的资源[icwb2-data](http://sighan.cs.uchicago.edu/bakeoff2005/)
中包含了来自这四家单位的训练集(icwb2-data/training)、测试集(icwb2-data/testing),
以及根据各自分词标准而提供的相应测试集的标准答案(icwb2-data/gold).在icwb2-data/scripts目录下含有对分词进行自动评分的perl脚本score。

我们在统一测试环境下,对若干流行分词软件和 LTP 进行了测试,使用的模型为各分词软件自带模型。在PKU和MSR测试集评测结果如下:

| Algorithm                                                                    | Speed(KB/s) |  PKU(F1) |  MSR(F1) |
| ---------------------------------------------------------------------------- | ----------: | -------: | -------: |
| [Jieba](https://github.com/fxsjy/jieba)                                      |      982.49 |     81.8 |     81.3 |
| [Pkuseg](https://github.com/lancopku/pkuseg-python)                          |      109.72 |     93.4 |     87.3 |
| [Thulac](https://github.com/thunlp/THULAC-Python)                            |       48.13 |     94.0 |     87.9 |
| [Thulac\[Fast\]](https://github.com/thunlp/THULAC-Python)                    |     1133.21 |       同上 |       同上 |
| [LTP 3(pyltp)](https://github.com/HIT-SCIR/pyltp)                            |      451.20 | **95.3** | **88.3** |
| [LTP legacy(1)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  | **1603.63** |     95.2 |     87.7 |
| [LTP legacy(2)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |     2869.42 |       同上 |       同上 |
| [LTP legacy(4)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |     4949.38 |       同上 |       同上 |
| [LTP legacy(8)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |     6803.88 |       同上 |       同上 |
| [LTP legacy(16)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension) | **7745.16** |       同上 |       同上 |

> **注:括号内为线程数量**

> **注2:Jieba的词表是在人民日报数据集上统计的**

### 流水线

除了分词以外,我们也测试了 LTP 三个任务(分词、词性标注、命名实体识别)流水线的速度:

| Algorithm                                                                    | Speed(KB/s) |
| ---------------------------------------------------------------------------- | ----------: |
| [LTP 3(pyltp)](https://github.com/HIT-SCIR/pyltp)                            |      153.10 |
| [LTP legacy(1)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |      508.74 |
| [LTP legacy(2)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |      899.25 |
| [LTP legacy(4)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |     1598.03 |
| [LTP legacy(8)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |     2267.48 |
| [LTP legacy(16)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension) |     2452.34 |

> **注:括号内为线程数量**

> **注2:速度数据在人民日报命名实体测试数据上获得,速度计算方式均为所有任务顺序执行的结果。**


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/HIT-SCIR/ltp",
    "name": "ltp-extension",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "ltp, nlp",
    "author": "ylfeng <ylfeng@ir.hit.edu.cn>",
    "author_email": "ylfeng <ylfeng@ir.hit.edu.cn>",
    "download_url": "https://files.pythonhosted.org/packages/50/c5/a00118e7fd35733b12b3cc84b09c64f42ef2a1d7cf1cbad88d4aa33f7e55/ltp_extension-0.1.13.tar.gz",
    "platform": null,
    "description": "| Language                             | version                                                                                                                                                                                                                                                                                                                   |\n| ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| [Python](python/interface/README.md) | [![LTP](https://img.shields.io/pypi/v/ltp?label=LTP)](https://pypi.org/project/ltp) [![LTP-Core](https://img.shields.io/pypi/v/ltp-core?label=LTP-Core)](https://pypi.org/project/ltp-core)   [![LTP-Extension](https://img.shields.io/pypi/v/ltp-extension?label=LTP-Extension)](https://pypi.org/project/ltp-extension) |\n| [Rust](rust/ltp/README.md)           | [![LTP](https://img.shields.io/crates/v/ltp?label=LTP)](https://crates.io/crates/ltp)                                                                                                                                                                                                                                     |\n\n# LTP extension For Python\n\nLTP for Rust \u5bf9 Python \u7684\u7ed1\u5b9a\uff0c\u7528\u4e8e\u63d0\u5347 LTP \u7684\u901f\u5ea6\uff0c\u4ee5\u53ca\u52a0\u5165\u4f20\u7edf\u673a\u5668\u5b66\u4e60\u7b97\u6cd5\u5b9e\u73b0\u7684\u4e2d\u6587\u4fe1\u606f\u5904\u7406\u5de5\u5177\u3002\n\n| method | ltp 3.0(c++) | ap(1) | ap(8) | pa    | pa-i(0.5) | pa-ii(0.5) |\n| ------ | ------------ | ----- | ----- | ----- | --------- | ---------- |\n| cws    | 97.83        | 97.93 | 97.67 | 97.90 | 97.90     | 97.93      |\n| pos    | 98.35        | 98.41 | 98.30 | 98.39 | 98.39     | 98.38      |\n| ner    | 94.17        | 94.28 | 93.42 | 94.02 | 94.06     | 93.95      |\n\n## \u81ea\u884c\u7f16\u8bd1\u5b89\u88c5\n\n```bash\nmaturin build --release -m python/extension/Cargo.toml --out dist --no-default-features --features=\"malloc\"\n# or \u9488\u5bf9cpu\u4f18\u5316\nmaturin build --release -m python/extension/Cargo.toml --out dist --no-default-features --features=\"malloc\" -- -C target-cpu=native\n```\n\n## features\n\n- [x] \u5206\u53e5\n- [x] \u4efb\u52a1\n  - [x] \u4e2d\u6587\u5206\u8bcd(cws)\n    - [ ] \u5bf9\u6570\u5b57\u3001\u82f1\u6587\u3001\u7f51\u5740\u3001\u90ae\u4ef6\u7684\u5904\u7406\n    - [x] \u652f\u6301\u81ea\u5b9a\u4e49\u8bcd\u5178\n  - [x] \u8bcd\u6027\u6807\u6ce8(pos)\n    - [ ] \u652f\u6301\u81ea\u5b9a\u4e49\u8bcd\u5178\n  - [x] \u547d\u540d\u5b9e\u4f53\u8bc6\u522b(ner)\n- [x] \u7b97\u6cd5\n  - [x] \u5e73\u5747\u611f\u77e5\u673a(ap)\n    - [x] \u5355\u7ebf\u7a0b\u5e73\u5747\u611f\u77e5\u673a\n    - [x] \u591a\u7ebf\u7a0b\u5e73\u5747\u611f\u77e5\u673a\n  - [x] \u88ab\u52a8\u653b\u51fb\u7b97\u6cd5(pa)\n- [ ] \u6a21\u578b\u91cf\u5316\n- [ ] \u5728\u7ebf\u5b66\u4e60\n- [ ] \u589e\u91cf\u5b66\u4e60\n\n## \u6027\u80fd\u6d4b\u8bd5\n\n### \u8bc4\u6d4b\u73af\u5883\n\n- Python 3.10\n- MacBook Pro (16-inch, 2019)\n- \u5904\u7406\u5668: 2.6 GHz \u516d\u6838Intel Core i7\n- \u5185\u5b58: 16 GB 2667 MHz DDR4\n\n> \u6ce8: \u901f\u5ea6\u6d4b\u8bd5\u6587\u4ef6\u5927\u5c0f\u4e3a 33.85 MB / 305041 \u884c\n\n### \u5206\u8bcd\n\n\u6211\u4eec\u9009\u62e9Jieba\u3001Pkuseg\u3001Thulac\u7b49\u56fd\u5185\u4ee3\u8868\u5206\u8bcd\u8f6f\u4ef6\u4e0e LTP \u505a\u6027\u80fd\u6bd4\u8f83\uff0c\u6839\u636e\u7b2c\u4e8c\u5c4a\u56fd\u9645\u6c49\u8bed\u5206\u8bcd\u6d4b\u8bc4\u53d1\u5e03\u7684\u56fd\u9645\u4e2d\u6587\u5206\u8bcd\u6d4b\u8bc4\u6807\u51c6\uff0c\u5bf9\u4e0d\u540c\u8f6f\u4ef6\u8fdb\u884c\u4e86\u901f\u5ea6\u548c\u51c6\u786e\u7387\u6d4b\u8bd5\u3002\n\n\u5728\u7b2c\u4e8c\u5c4a\u56fd\u9645\u6c49\u8bed\u5206\u8bcd\u6d4b\u8bc4\u4e2d\uff0c\u5171\u6709\u56db\u5bb6\u5355\u4f4d\u63d0\u4f9b\u7684\u6d4b\u8bd5\u8bed\u6599\uff08Academia Sinica\u3001 City University \u3001Peking University(PKU)\n\u3001Microsoft Research(MSR)\uff09, \u5728\u8bc4\u6d4b\u63d0\u4f9b\u7684\u8d44\u6e90[icwb2-data](http://sighan.cs.uchicago.edu/bakeoff2005/)\n\u4e2d\u5305\u542b\u4e86\u6765\u81ea\u8fd9\u56db\u5bb6\u5355\u4f4d\u7684\u8bad\u7ec3\u96c6\uff08icwb2-data/training\uff09\u3001\u6d4b\u8bd5\u96c6\uff08icwb2-data/testing\uff09,\n\u4ee5\u53ca\u6839\u636e\u5404\u81ea\u5206\u8bcd\u6807\u51c6\u800c\u63d0\u4f9b\u7684\u76f8\u5e94\u6d4b\u8bd5\u96c6\u7684\u6807\u51c6\u7b54\u6848\uff08icwb2-data/gold\uff09\uff0e\u5728icwb2-data/scripts\u76ee\u5f55\u4e0b\u542b\u6709\u5bf9\u5206\u8bcd\u8fdb\u884c\u81ea\u52a8\u8bc4\u5206\u7684perl\u811a\u672cscore\u3002\n\n\u6211\u4eec\u5728\u7edf\u4e00\u6d4b\u8bd5\u73af\u5883\u4e0b\uff0c\u5bf9\u82e5\u5e72\u6d41\u884c\u5206\u8bcd\u8f6f\u4ef6\u548c LTP \u8fdb\u884c\u4e86\u6d4b\u8bd5\uff0c\u4f7f\u7528\u7684\u6a21\u578b\u4e3a\u5404\u5206\u8bcd\u8f6f\u4ef6\u81ea\u5e26\u6a21\u578b\u3002\u5728PKU\u548cMSR\u6d4b\u8bd5\u96c6\u8bc4\u6d4b\u7ed3\u679c\u5982\u4e0b\uff1a\n\n| Algorithm                                                                    | Speed(KB/s) |  PKU(F1) |  MSR(F1) |\n| ---------------------------------------------------------------------------- | ----------: | -------: | -------: |\n| [Jieba](https://github.com/fxsjy/jieba)                                      |      982.49 |     81.8 |     81.3 |\n| [Pkuseg](https://github.com/lancopku/pkuseg-python)                          |      109.72 |     93.4 |     87.3 |\n| [Thulac](https://github.com/thunlp/THULAC-Python)                            |       48.13 |     94.0 |     87.9 |\n| [Thulac\\[Fast\\]](https://github.com/thunlp/THULAC-Python)                    |     1133.21 |       \u540c\u4e0a |       \u540c\u4e0a |\n| [LTP 3(pyltp)](https://github.com/HIT-SCIR/pyltp)                            |      451.20 | **95.3** | **88.3** |\n| [LTP legacy(1)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  | **1603.63** |     95.2 |     87.7 |\n| [LTP legacy(2)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |     2869.42 |       \u540c\u4e0a |       \u540c\u4e0a |\n| [LTP legacy(4)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |     4949.38 |       \u540c\u4e0a |       \u540c\u4e0a |\n| [LTP legacy(8)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |     6803.88 |       \u540c\u4e0a |       \u540c\u4e0a |\n| [LTP legacy(16)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension) | **7745.16** |       \u540c\u4e0a |       \u540c\u4e0a |\n\n> **\u6ce8\uff1a\u62ec\u53f7\u5185\u4e3a\u7ebf\u7a0b\u6570\u91cf**\n\n> **\u6ce82\uff1aJieba\u7684\u8bcd\u8868\u662f\u5728\u4eba\u6c11\u65e5\u62a5\u6570\u636e\u96c6\u4e0a\u7edf\u8ba1\u7684**\n\n### \u6d41\u6c34\u7ebf\n\n\u9664\u4e86\u5206\u8bcd\u4ee5\u5916\uff0c\u6211\u4eec\u4e5f\u6d4b\u8bd5\u4e86 LTP \u4e09\u4e2a\u4efb\u52a1\uff08\u5206\u8bcd\u3001\u8bcd\u6027\u6807\u6ce8\u3001\u547d\u540d\u5b9e\u4f53\u8bc6\u522b\uff09\u6d41\u6c34\u7ebf\u7684\u901f\u5ea6\uff1a\n\n| Algorithm                                                                    | Speed(KB/s) |\n| ---------------------------------------------------------------------------- | ----------: |\n| [LTP 3(pyltp)](https://github.com/HIT-SCIR/pyltp)                            |      153.10 |\n| [LTP legacy(1)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |      508.74 |\n| [LTP legacy(2)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |      899.25 |\n| [LTP legacy(4)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |     1598.03 |\n| [LTP legacy(8)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension)  |     2267.48 |\n| [LTP legacy(16)](https://github.com/HIT-SCIR/ltp/tree/main/python/extension) |     2452.34 |\n\n> **\u6ce8\uff1a\u62ec\u53f7\u5185\u4e3a\u7ebf\u7a0b\u6570\u91cf**\n\n> **\u6ce82\uff1a\u901f\u5ea6\u6570\u636e\u5728\u4eba\u6c11\u65e5\u62a5\u547d\u540d\u5b9e\u4f53\u6d4b\u8bd5\u6570\u636e\u4e0a\u83b7\u5f97\uff0c\u901f\u5ea6\u8ba1\u7b97\u65b9\u5f0f\u5747\u4e3a\u6240\u6709\u4efb\u52a1\u987a\u5e8f\u6267\u884c\u7684\u7ed3\u679c\u3002**\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Rust Extension For Language Technology Platform(Python).",
    "version": "0.1.13",
    "project_urls": {
        "Homepage": "https://github.com/HIT-SCIR/ltp",
        "Source Code": "https://github.com/HIT-SCIR/ltp"
    },
    "split_keywords": [
        "ltp",
        " nlp"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0263a389f2b47e60890bde1124853c6d6d5a0fabb7c7ec68d77e1f9583d54c97",
                "md5": "3846123a9bec31ea7363581f417a9904",
                "sha256": "9630a02efc2c1bdb4999a0d90b9aae6d544adc85af0d8844126a26a461db3f67"
            },
            "downloads": -1,
            "filename": "ltp_extension-0.1.13-cp37-abi3-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3846123a9bec31ea7363581f417a9904",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 923068,
            "upload_time": "2024-04-04T19:17:39",
            "upload_time_iso_8601": "2024-04-04T19:17:39.299464Z",
            "url": "https://files.pythonhosted.org/packages/02/63/a389f2b47e60890bde1124853c6d6d5a0fabb7c7ec68d77e1f9583d54c97/ltp_extension-0.1.13-cp37-abi3-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1248c3846016678b4d7f5b4822e40594d0303404934f42f05229afc80713c092",
                "md5": "ced733f73253e9c18e85e97af136ac4d",
                "sha256": "e2add33859c825118a5b75a96967cbd464fef5fa24b2921bb3ed6fe129bcd12e"
            },
            "downloads": -1,
            "filename": "ltp_extension-0.1.13-cp37-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ced733f73253e9c18e85e97af136ac4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 804788,
            "upload_time": "2024-04-04T19:17:36",
            "upload_time_iso_8601": "2024-04-04T19:17:36.384510Z",
            "url": "https://files.pythonhosted.org/packages/12/48/c3846016678b4d7f5b4822e40594d0303404934f42f05229afc80713c092/ltp_extension-0.1.13-cp37-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b973dcc246b313375c44024bdd2cf85f3e06d01d1823c1433ffa4504c3a1d9e3",
                "md5": "3f9369dc255256e22e6aa4d8e8e803db",
                "sha256": "ccd8387a46675b776a9b537935446cbed982afad3a632dc096f0a7bd45b3bb6b"
            },
            "downloads": -1,
            "filename": "ltp_extension-0.1.13-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "3f9369dc255256e22e6aa4d8e8e803db",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1382220,
            "upload_time": "2024-04-04T19:17:31",
            "upload_time_iso_8601": "2024-04-04T19:17:31.922059Z",
            "url": "https://files.pythonhosted.org/packages/b9/73/dcc246b313375c44024bdd2cf85f3e06d01d1823c1433ffa4504c3a1d9e3/ltp_extension-0.1.13-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97af56058f9303d7c5c14abbbe6694b64d682d9f4f1b52a85444d7b9d3196be1",
                "md5": "a65eec7f1321aa4f0d835065199e5d42",
                "sha256": "b2d46cb45b10420b828ac9d3532fb736fadfe484d4d2647c933697e1a48b0a1a"
            },
            "downloads": -1,
            "filename": "ltp_extension-0.1.13-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a65eec7f1321aa4f0d835065199e5d42",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1293184,
            "upload_time": "2024-04-04T19:17:21",
            "upload_time_iso_8601": "2024-04-04T19:17:21.500628Z",
            "url": "https://files.pythonhosted.org/packages/97/af/56058f9303d7c5c14abbbe6694b64d682d9f4f1b52a85444d7b9d3196be1/ltp_extension-0.1.13-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea56dd8c33c1e542a7906b3223196502fe3a73a99a4030f6e819673c5e104abe",
                "md5": "a47f3ab229fe02857da912861a17a300",
                "sha256": "1fa88577fdda17596759b7eebf3aa24353982d3f51ae691a57c066669ade3688"
            },
            "downloads": -1,
            "filename": "ltp_extension-0.1.13-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a47f3ab229fe02857da912861a17a300",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1355357,
            "upload_time": "2024-04-04T19:17:24",
            "upload_time_iso_8601": "2024-04-04T19:17:24.375017Z",
            "url": "https://files.pythonhosted.org/packages/ea/56/dd8c33c1e542a7906b3223196502fe3a73a99a4030f6e819673c5e104abe/ltp_extension-0.1.13-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8258d4c0397c8f588db9bfa2dbe5ae0cf69efa24e5d3e18cd6b357c25b1f1bf",
                "md5": "7f48711e78cba267ae59ab0acc271bf7",
                "sha256": "1e7cd25d7a5f810b93085a22306cd6f97eebe2c2c9b609e4b8ac3b2e028be783"
            },
            "downloads": -1,
            "filename": "ltp_extension-0.1.13-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7f48711e78cba267ae59ab0acc271bf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1383942,
            "upload_time": "2024-04-04T19:17:27",
            "upload_time_iso_8601": "2024-04-04T19:17:27.103988Z",
            "url": "https://files.pythonhosted.org/packages/c8/25/8d4c0397c8f588db9bfa2dbe5ae0cf69efa24e5d3e18cd6b357c25b1f1bf/ltp_extension-0.1.13-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59f0a50af7bfeb9a428d570bd679344e8d254aa55d582ffaf3ecec8258278f3a",
                "md5": "81c283d11ba83f5f33422066920eba14",
                "sha256": "c014ad836e28b69a8dc5f17d3603d18cdef4db70de294a246c0b40d6df9eafaf"
            },
            "downloads": -1,
            "filename": "ltp_extension-0.1.13-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "81c283d11ba83f5f33422066920eba14",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1769627,
            "upload_time": "2024-04-04T19:17:29",
            "upload_time_iso_8601": "2024-04-04T19:17:29.154844Z",
            "url": "https://files.pythonhosted.org/packages/59/f0/a50af7bfeb9a428d570bd679344e8d254aa55d582ffaf3ecec8258278f3a/ltp_extension-0.1.13-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b28fbd3facff50ec9a284a2f39d9c5afde510327c08cdb7aead3f642e1871cd",
                "md5": "0ad9d5a39178bfaef8898ceda4b9f1e6",
                "sha256": "221c504221218d64469038276974009abc85766cbd15fd7fa3a40d52796d3e67"
            },
            "downloads": -1,
            "filename": "ltp_extension-0.1.13-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ad9d5a39178bfaef8898ceda4b9f1e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1355133,
            "upload_time": "2024-04-04T19:17:33",
            "upload_time_iso_8601": "2024-04-04T19:17:33.912469Z",
            "url": "https://files.pythonhosted.org/packages/9b/28/fbd3facff50ec9a284a2f39d9c5afde510327c08cdb7aead3f642e1871cd/ltp_extension-0.1.13-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8d4a98c303756776e1917c6ee05484641001c3c4d5eccc0eee9775a4f12bd43",
                "md5": "cfd67fabad704b4fff6202324eb6c1d8",
                "sha256": "4b232cde6f3c65ffe8f80181ebaa55d71912a9e7ba527dda3cbc041a81202b68"
            },
            "downloads": -1,
            "filename": "ltp_extension-0.1.13-cp37-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "cfd67fabad704b4fff6202324eb6c1d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 681506,
            "upload_time": "2024-04-04T19:17:45",
            "upload_time_iso_8601": "2024-04-04T19:17:45.747547Z",
            "url": "https://files.pythonhosted.org/packages/e8/d4/a98c303756776e1917c6ee05484641001c3c4d5eccc0eee9775a4f12bd43/ltp_extension-0.1.13-cp37-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e9990892503fe37128ad11d2397ce093a3605c36452cca8ef04be261027ea1e",
                "md5": "4a3956f83e08858425c3844ac89ce79b",
                "sha256": "15cdbc748647a7850ff241f516f81af1a3c41d36ab5e07da703cf0e53457f15b"
            },
            "downloads": -1,
            "filename": "ltp_extension-0.1.13-cp37-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4a3956f83e08858425c3844ac89ce79b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 707510,
            "upload_time": "2024-04-04T19:17:43",
            "upload_time_iso_8601": "2024-04-04T19:17:43.441448Z",
            "url": "https://files.pythonhosted.org/packages/5e/99/90892503fe37128ad11d2397ce093a3605c36452cca8ef04be261027ea1e/ltp_extension-0.1.13-cp37-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50c5a00118e7fd35733b12b3cc84b09c64f42ef2a1d7cf1cbad88d4aa33f7e55",
                "md5": "5801787503e21bfe1f5fe35466c7a762",
                "sha256": "5fa2fdca6f96f1c1535ab259dd6e1ad6c427e2c11391750f4f8d30db55ff6401"
            },
            "downloads": -1,
            "filename": "ltp_extension-0.1.13.tar.gz",
            "has_sig": false,
            "md5_digest": "5801787503e21bfe1f5fe35466c7a762",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 109552,
            "upload_time": "2024-04-04T19:17:41",
            "upload_time_iso_8601": "2024-04-04T19:17:41.583503Z",
            "url": "https://files.pythonhosted.org/packages/50/c5/a00118e7fd35733b12b3cc84b09c64f42ef2a1d7cf1cbad88d4aa33f7e55/ltp_extension-0.1.13.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-04 19:17:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "HIT-SCIR",
    "github_project": "ltp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "lcname": "ltp-extension"
}
        
Elapsed time: 0.22365s