Skip to content

Commit f1d975e

Browse files
committed
v1.6.1
1 parent 0560fb5 commit f1d975e

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ Integrated into [Huggingface Spaces 🤗](https://huggingface.co/spaces) using [
1414

1515

1616
## What's new
17+
- 1 September 2022 - Version 1.6.1
18+
- Fix DBNET path bug for Windows
19+
- Add new built-in model `cyrillic_g2`. This model is a new default for Cyrillic script.
1720
- 24 August 2022 - Version 1.6.0
1821
- Restructure code to support alternative text detectors.
19-
- 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')`.
22+
- 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.*
2023
- 2 June 2022 - Version 1.5.0
2124
- Add trainer for CRAFT detection model (thanks[@gmuffiness](https://github.com/gmuffiness), see [PR](https://github.com/JaidedAI/EasyOCR/pull/739))
2225
- 9 April 2022 - Version 1.4.2

easyocr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .easyocr import Reader
22

3-
__version__ = '1.6.0'
3+
__version__ = '1.6.1'

easyocr/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
'cyrillic_g2':{
202202
'filename': 'cyrillic_g2.pth',
203203
'model_script': 'cyrillic',
204-
'url': 'https://github.com/JaidedAI/EasyOCR/releases/download/pre-v1.1.6/cyrillic.zip',
204+
'url': 'https://github.com/JaidedAI/EasyOCR/releases/download/v1.6.1/cyrillic_g2.zip',
205205
'md5sum': '19f85f43d9128a89ac21b8d6a06973fe',
206206
'symbols': '0123456789!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ €₽',
207207
'characters': '0123456789!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ €₽ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюяЂђЃѓЄєІіЇїЈјЉљЊњЋћЌќЎўЏџҐґҒғҚқҮүҲҳҶҷӀӏӢӣӨөӮӯ'

releasenotes.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
- 1 September 2022 - Version 1.6.1
2+
- Fix DBNET path bug for Windows
3+
- Add new built-in model `cyrillic_g2`. This model is a new default for Cyrillic script.
14
- 24 August 2022 - Version 1.6.0
25
- Restructure code to support alternative text detectors.
3-
- 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')`.
6+
- 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.*
47
- 2 June 2022 - Version 1.5.0
58
- Add trainer for CRAFT detection model (thanks[@gmuffiness](https://github.com/gmuffiness), see [PR](https://github.com/JaidedAI/EasyOCR/pull/739))
69
- 9 April 2022 - Version 1.4.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def run(self):
3737
name='easyocr',
3838
packages=['easyocr'],
3939
include_package_data=True,
40-
version='1.6.0',
40+
version='1.6.1',
4141
install_requires=requirements,
4242
entry_points={"console_scripts": ["easyocr= easyocr.cli:main"]},
4343
license='Apache License 2.0',

0 commit comments

Comments
 (0)