https://github.com/microsoft/reconner
ReconNER, Debug annotated Named Entity Recognition (NER) data for inconsistencies and get insights on improving the quality of your data.
https://github.com/microsoft/reconner
ai data ner-data nlp
Last synced: 3 months ago
JSON representation
ReconNER, Debug annotated Named Entity Recognition (NER) data for inconsistencies and get insights on improving the quality of your data.
- Host: GitHub
- URL: https://github.com/microsoft/reconner
- Owner: microsoft
- License: mit
- Created: 2020-02-20T19:52:08.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-26T08:17:47.000Z (over 5 years ago)
- Last Synced: 2025-02-16T10:18:32.027Z (12 months ago)
- Topics: ai, data, ner-data, nlp
- Language: Python
- Homepage: https://microsoft.github.io/reconner
- Size: 2.79 MB
- Stars: 34
- Watchers: 5
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: docs/contributing.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
Recon NER, Debug annotated Named Entity Recognition (NER) data for inconsitencies and get insights on improving the quality of your data.
---
**Documentation**: https://microsoft.github.io/reconner
**Source Code**: https://github.com/microsoft/reconner
---
ReconNER 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.
* **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.
* **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**: ReconNER provides a `Dataset` class 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.
* **Serializable Dataset**: Serialize and Deserialize your data to and from JSON to the ReconNER type system.
* **Type Hints**: Comprehensive Typing system based on Python 3.6+ Type Hints
## Requirements
Python 3.6+
`ReconNER` is built on a few comprehensive, high-performing packages.
* spaCy
* Pydantic (Type system and JSON Serialization)
* Typer (CLI).
## Installation
```console
$ pip install reconner
---> 100%
Successfully installed reconner
```
## License
This project is licensed under the terms of the MIT license.