File tree 4 files changed +7
-3
lines changed
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ Integrated into [Huggingface Spaces 🤗](https://huggingface.co/spaces) using [
14
14
15
15
16
16
## What's new
17
+ - 2 June 2022 - Version 1.5.0
18
+ - Add trainer for CRAFT detection model (thanks[ @gmuffiness ] ( https://github.com/gmuffiness ) , see [ PR] ( https://github.com/JaidedAI/EasyOCR/pull/739 ) )
17
19
- 9 April 2022 - Version 1.4.2
18
20
- Update dependencies (opencv and pillow issues)
19
21
- 11 September 2021 - Version 1.4.1
@@ -133,7 +135,7 @@ $ easyocr -l ch_sim en -f chinese.jpg --detail=1 --gpu=True
133
135
134
136
For recognition model, [ Read here] ( https://github.com/JaidedAI/EasyOCR/blob/master/custom_model.md ) .
135
137
136
- For detection model (CRAFT), [ Read here] ( https://github.com/JaidedAI/EasyOCR/blob/master/trainer/craft/README.md ) .
138
+ For detection model (CRAFT), [ Read here] ( https://github.com/JaidedAI/EasyOCR/blob/master/trainer/craft/README.md ) .
137
139
138
140
## Implementation Roadmap
139
141
Original file line number Diff line number Diff line change 1
1
from .easyocr import Reader
2
2
3
- __version__ = '1.4.2 '
3
+ __version__ = '1.5.0 '
Original file line number Diff line number Diff line change
1
+ - 2 June 2022 - Version 1.5.0
2
+ - Add trainer for CRAFT detection model (thanks[ @gmuffiness ] ( https://github.com/gmuffiness ) , see [ PR] ( https://github.com/JaidedAI/EasyOCR/pull/739 ) )
1
3
- 9 April 2022 - Version 1.4.2
2
4
- Update dependencies (opencv and pillow issues)
3
5
- 11 September 2021 - Version 1.4.1
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ def readme():
17
17
name = 'easyocr' ,
18
18
packages = ['easyocr' ],
19
19
include_package_data = True ,
20
- version = '1.4.2 ' ,
20
+ version = '1.5.0 ' ,
21
21
install_requires = requirements ,
22
22
entry_points = {"console_scripts" : ["easyocr= easyocr.cli:main" ]},
23
23
license = 'Apache License 2.0' ,
You can’t perform that action at this time.
0 commit comments