Name | reconner JSON |
Version |
0.14.0
JSON |
| download |
home_page | https://kabirkhan.github.io/recon |
Summary | Recon NER, Debug and correct annotated Named Entity Recognition (NER) data for inconsitencies and get insights on improving the quality of your data. |
upload_time | 2023-09-02 20:33:23 |
maintainer | |
docs_url | None |
author | Kabir Khan |
requires_python | >=3.8,<3.12 |
license | |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
|
<p align="center">
<a href="https://kabirkhan.github.io/recon"><img src="https://raw.githubusercontent.com/kabirkhan/recon/main/docs/img/recon-ner.svg" alt="Recon"></a>
</p>
<p align="center">
<em>Recon NER, Debug and correct annotated Named Entity Recognition (NER) data for inconsitencies and get insights on improving the quality of your data.</em>
</p>
<p align="center">
<a href="https://pypi.org/project/reconner" target="_blank">
<img src="https://img.shields.io/pypi/v/reconner?style=for-the-badge" alt="PyPi Package version">
</a>
<a href="https://github.com/kabirkhan/recon/actions/workflows/ci.yml" target="_blank">
<img alt="GitHub Actions Build badge" src="https://img.shields.io/github/actions/workflow/status/kabirkhan/recon/.github/workflows/ci.yml?branch=main&style=for-the-badge">
</a>
<a href="https://codecov.io/gh/kabirkhan/recon" rel="nofollow">
<img alt="Codecov badge" src="https://img.shields.io/codecov/c/gh/kabirkhan/recon?style=for-the-badge" style="max-width:100%;">
</a>
<a href="https://pypi.org/project/reconner" target="_blank">
<img src="https://img.shields.io/pypi/l/reconner?style=for-the-badge" alt="PyPi Package license">
</a>
</p>
---
**Documentation**: <a href="https://kabirkhan.github.io/recon" target="_blank">https://kabirkhan.github.io/recon</a>
**Source Code**: <a href="https://github.com/kabirkhan/recon" target="_blank">https://github.com/kabirkhan/recon</a>
---
Recon is a library to help you fix your annotated NER data and identify examples that are hardest for your model to predict so you can strategically prioritize the examples you annotate.
The key features are:
* **Data Validation and Cleanup**: Easily Validate the format of your NER data. Filter overlapping Entity Annotations, fix missing properties.
* **Statistics**: Get statistics on your data. From how many annotations you have for each label, to more complicated metrics like quality scores for the balance of your dataset.
* **Model Insights**: Analyze how well your model does on your Dataset. Identify the top errors your model is making so you can prioritize data collection and correction strategically.
* **Dataset Management**: Recon provides `Dataset` and `Corpus` containers to manage the train/dev/test split of your data and apply the same functions across all splits in your data + a concatenation of all examples. Operate inplace to consistently transform your data with reliable tracking and the ability to version and rollback changes.
* **Serializable Dataset**: Serialize and Deserialize your data to and from JSON to the Recon type system.
* **Type Hints**: Comprehensive Typing system based on Python 3.7+ Type Hints
## Requirements
Python 3.7 +
* <a href="https://spacy.io" class="external-link" target="_blank">spaCy</a>
* <a href="https://pydantic-docs.helpmanual.io/" class="external-link" target="_blank">Pydantic (Type system and JSON Serialization)</a>
* <a href="https://typer.tiangolo.com" class="external-link" target="_blank">Typer (CLI)</a>.
## Installation
<div class="termy">
```console
$ pip install reconner
---> 100%
Successfully installed reconner
```
</div>
## License
This project is licensed under the terms of the MIT license.
Raw data
{
"_id": null,
"home_page": "https://kabirkhan.github.io/recon",
"name": "reconner",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.8,<3.12",
"maintainer_email": "",
"keywords": "",
"author": "Kabir Khan",
"author_email": "kabirkhan1137@outlook.com",
"download_url": "https://files.pythonhosted.org/packages/51/8f/6b777c35ac6d1bc182a334fdea1619f962d1fdd31c4a3dd6c0b8e5c98a58/reconner-0.14.0.tar.gz",
"platform": null,
"description": "<p align=\"center\">\n <a href=\"https://kabirkhan.github.io/recon\"><img src=\"https://raw.githubusercontent.com/kabirkhan/recon/main/docs/img/recon-ner.svg\" alt=\"Recon\"></a>\n</p>\n<p align=\"center\">\n <em>Recon NER, Debug and correct annotated Named Entity Recognition (NER) data for inconsitencies and get insights on improving the quality of your data.</em>\n</p>\n<p align=\"center\">\n<a href=\"https://pypi.org/project/reconner\" target=\"_blank\">\n <img src=\"https://img.shields.io/pypi/v/reconner?style=for-the-badge\" alt=\"PyPi Package version\">\n</a>\n<a href=\"https://github.com/kabirkhan/recon/actions/workflows/ci.yml\" target=\"_blank\">\n <img alt=\"GitHub Actions Build badge\" src=\"https://img.shields.io/github/actions/workflow/status/kabirkhan/recon/.github/workflows/ci.yml?branch=main&style=for-the-badge\">\n\n</a>\n<a href=\"https://codecov.io/gh/kabirkhan/recon\" rel=\"nofollow\">\n <img alt=\"Codecov badge\" src=\"https://img.shields.io/codecov/c/gh/kabirkhan/recon?style=for-the-badge\" style=\"max-width:100%;\">\n</a>\n\n<a href=\"https://pypi.org/project/reconner\" target=\"_blank\">\n <img src=\"https://img.shields.io/pypi/l/reconner?style=for-the-badge\" alt=\"PyPi Package license\">\n</a>\n</p>\n\n---\n\n**Documentation**: <a href=\"https://kabirkhan.github.io/recon\" target=\"_blank\">https://kabirkhan.github.io/recon</a>\n\n**Source Code**: <a href=\"https://github.com/kabirkhan/recon\" target=\"_blank\">https://github.com/kabirkhan/recon</a>\n\n---\n\nRecon is a library to help you fix your annotated NER data and identify examples that are hardest for your model to predict so you can strategically prioritize the examples you annotate.\n\nThe key features are:\n\n* **Data Validation and Cleanup**: Easily Validate the format of your NER data. Filter overlapping Entity Annotations, fix missing properties.\n* **Statistics**: Get statistics on your data. From how many annotations you have for each label, to more complicated metrics like quality scores for the balance of your dataset.\n* **Model Insights**: Analyze how well your model does on your Dataset. Identify the top errors your model is making so you can prioritize data collection and correction strategically.\n* **Dataset Management**: Recon provides `Dataset` and `Corpus` containers to manage the train/dev/test split of your data and apply the same functions across all splits in your data + a concatenation of all examples. Operate inplace to consistently transform your data with reliable tracking and the ability to version and rollback changes.\n* **Serializable Dataset**: Serialize and Deserialize your data to and from JSON to the Recon type system.\n* **Type Hints**: Comprehensive Typing system based on Python 3.7+ Type Hints\n\n## Requirements\n\nPython 3.7 +\n\n* <a href=\"https://spacy.io\" class=\"external-link\" target=\"_blank\">spaCy</a>\n* <a href=\"https://pydantic-docs.helpmanual.io/\" class=\"external-link\" target=\"_blank\">Pydantic (Type system and JSON Serialization)</a>\n* <a href=\"https://typer.tiangolo.com\" class=\"external-link\" target=\"_blank\">Typer (CLI)</a>.\n\n\n## Installation\n\n<div class=\"termy\">\n\n```console\n$ pip install reconner\n---> 100%\nSuccessfully installed reconner\n```\n\n</div>\n\n## License\n\nThis project is licensed under the terms of the MIT license.\n",
"bugtrack_url": null,
"license": "",
"summary": "Recon NER, Debug and correct annotated Named Entity Recognition (NER) data for inconsitencies and get insights on improving the quality of your data.",
"version": "0.14.0",
"project_urls": {
"Documentation": "https://kabirkhan.github.io/recon",
"Homepage": "https://kabirkhan.github.io/recon",
"Repository": "https://github.com/kabirkhan/recon"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f9ba844c795eb331e952e4a46c6bd3bb4325c2532f415bfacb8eafd6011d9554",
"md5": "813b1ef42c147ad549ee6f9a3d860f5e",
"sha256": "6e248456b93f59fdd0d47efa428c1ce841a22445d7b884e19f77ebe37e7eab60"
},
"downloads": -1,
"filename": "reconner-0.14.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "813b1ef42c147ad549ee6f9a3d860f5e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8,<3.12",
"size": 46088,
"upload_time": "2023-09-02T20:33:21",
"upload_time_iso_8601": "2023-09-02T20:33:21.627151Z",
"url": "https://files.pythonhosted.org/packages/f9/ba/844c795eb331e952e4a46c6bd3bb4325c2532f415bfacb8eafd6011d9554/reconner-0.14.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "518f6b777c35ac6d1bc182a334fdea1619f962d1fdd31c4a3dd6c0b8e5c98a58",
"md5": "448841d5837dc2b8fd3ec697408052e6",
"sha256": "41f7767bc470bae443628e0b1ed2d8b68fd3caaa5b162803252bc6c88f3cf45a"
},
"downloads": -1,
"filename": "reconner-0.14.0.tar.gz",
"has_sig": false,
"md5_digest": "448841d5837dc2b8fd3ec697408052e6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8,<3.12",
"size": 37974,
"upload_time": "2023-09-02T20:33:23",
"upload_time_iso_8601": "2023-09-02T20:33:23.071330Z",
"url": "https://files.pythonhosted.org/packages/51/8f/6b777c35ac6d1bc182a334fdea1619f962d1fdd31c4a3dd6c0b8e5c98a58/reconner-0.14.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-09-02 20:33:23",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "kabirkhan",
"github_project": "recon",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "reconner"
}