From c14e20c1b44f50a60dfc9c317ac5543e69de9778 Mon Sep 17 00:00:00 2001 From: asahi417 Date: Thu, 11 Aug 2022 01:10:25 +0100 Subject: [PATCH] update README --- README.md | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 99d06ef..dd81fc4 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,8 @@ # T-NER: An All-Round Python Library for Transformer-based Named Entity Recognition ***T-NER*** is a python tool for language model finetuning on named-entity-recognition (NER) implemented in pytorch, available via [pip](https://pypi.org/project/tner/). -It has an easy interface to finetune models and test on cross-domain and multilingual datasets. T-NER currently integrates 9 publicly available NER datasets and enables an easy integration of custom datasets. +It has an easy interface to finetune models and test on cross-domain and multilingual datasets. +T-NER currently integrates high coverage of publicly available NER datasets and enables an easy integration of custom datasets. All models finetuned with T-NER can be deployed on our web app for visualization. [Our paper demonstrating T-NER](https://www.aclweb.org/anthology/2021.eacl-demos.7/) has been accepted to EACL 2021. All the models and datasets are shared via [T-NER HuggingFace group](https://huggingface.co/tner). diff --git a/setup.py b/setup.py index 08742ee..05055ba 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ with open('README.md', 'r') as f: readme = f.read() -version = '0.1.0' +version = '0.1.1' setup( name='tner', packages=find_packages(exclude=["asset", "examples", "static", "templates", "tests"]),