From f1d975e8b819f73db004ade1e535f068a13b3ca0 Mon Sep 17 00:00:00 2001 From: rkcosmos Date: Thu, 1 Sep 2022 15:18:35 +0700 Subject: [PATCH] v1.6.1 --- README.md | 5 ++++- easyocr/__init__.py | 2 +- easyocr/config.py | 2 +- releasenotes.md | 5 ++++- setup.py | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 61085bfbd8..186aece4f9 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,12 @@ Integrated into [Huggingface Spaces 🤗](https://huggingface.co/spaces) using [ ## What's new +- 1 September 2022 - Version 1.6.1 + - Fix DBNET path bug for Windows + - Add new built-in model `cyrillic_g2`. This model is a new default for Cyrillic script. - 24 August 2022 - Version 1.6.0 - Restructure code to support alternative text detectors. - - Add detector `DBNET`, see [paper](https://arxiv.org/abs/2202.10304v1). It can be used by initializing like this `reader = easyocr.Reader(['en'], detect_network = 'dbnet18')`. + - Add detector `DBNET`, see [paper](https://arxiv.org/abs/2202.10304v1). It can be used by initializing like this `reader = easyocr.Reader(['en'], detect_network = 'dbnet18')`. *Currently, DBNet text detector requires running with GPU.* - 2 June 2022 - Version 1.5.0 - Add trainer for CRAFT detection model (thanks[@gmuffiness](https://github.com/gmuffiness), see [PR](https://github.com/JaidedAI/EasyOCR/pull/739)) - 9 April 2022 - Version 1.4.2 diff --git a/easyocr/__init__.py b/easyocr/__init__.py index 5147a186c8..b9cb76c184 100644 --- a/easyocr/__init__.py +++ b/easyocr/__init__.py @@ -1,3 +1,3 @@ from .easyocr import Reader -__version__ = '1.6.0' +__version__ = '1.6.1' diff --git a/easyocr/config.py b/easyocr/config.py index 3276b32261..355b7e6319 100644 --- a/easyocr/config.py +++ b/easyocr/config.py @@ -201,7 +201,7 @@ 'cyrillic_g2':{ 'filename': 'cyrillic_g2.pth', 'model_script': 'cyrillic', - 'url': 'https://github.com/JaidedAI/EasyOCR/releases/download/pre-v1.1.6/cyrillic.zip', + 'url': 'https://github.com/JaidedAI/EasyOCR/releases/download/v1.6.1/cyrillic_g2.zip', 'md5sum': '19f85f43d9128a89ac21b8d6a06973fe', 'symbols': '0123456789!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ €₽', 'characters': '0123456789!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ €₽ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюяЂђЃѓЄєІіЇїЈјЉљЊњЋћЌќЎўЏџҐґҒғҚқҮүҲҳҶҷӀӏӢӣӨөӮӯ' diff --git a/releasenotes.md b/releasenotes.md index 311c40860c..36b2924828 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -1,6 +1,9 @@ +- 1 September 2022 - Version 1.6.1 + - Fix DBNET path bug for Windows + - Add new built-in model `cyrillic_g2`. This model is a new default for Cyrillic script. - 24 August 2022 - Version 1.6.0 - Restructure code to support alternative text detectors. - - Add detector `DBNET`, see [paper](https://arxiv.org/abs/2202.10304v1). It can be used by initializing like this `reader = easyocr.Reader(['en'], detect_network = 'dbnet18')`. + - Add detector `DBNET`, see [paper](https://arxiv.org/abs/2202.10304v1). It can be used by initializing like this `reader = easyocr.Reader(['en'], detect_network = 'dbnet18')`. *Currently, DBNet text detector requires running with GPU.* - 2 June 2022 - Version 1.5.0 - Add trainer for CRAFT detection model (thanks[@gmuffiness](https://github.com/gmuffiness), see [PR](https://github.com/JaidedAI/EasyOCR/pull/739)) - 9 April 2022 - Version 1.4.2 diff --git a/setup.py b/setup.py index 3efe7d0df2..31b2b8b45e 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def run(self): name='easyocr', packages=['easyocr'], include_package_data=True, - version='1.6.0', + version='1.6.1', install_requires=requirements, entry_points={"console_scripts": ["easyocr= easyocr.cli:main"]}, license='Apache License 2.0',