mirror of
https://github.com/LmeSzinc/AzurLaneAutoScript.git
synced 2025-04-04 04:01:20 +08:00
Add: ocr model for azur_lane in JP server
This commit is contained in:
parent
3995010ce6
commit
10130c9882
Binary file not shown.
File diff suppressed because it is too large
Load Diff
38
bin/cnocr_models/azur_lane_jp/label_cn.txt
Normal file
38
bin/cnocr_models/azur_lane_jp/label_cn.txt
Normal file
@ -0,0 +1,38 @@
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
A
|
||||
B
|
||||
C
|
||||
D
|
||||
E
|
||||
F
|
||||
G
|
||||
H
|
||||
I
|
||||
J
|
||||
K
|
||||
L
|
||||
M
|
||||
N
|
||||
P
|
||||
Q
|
||||
R
|
||||
S
|
||||
T
|
||||
U
|
||||
V
|
||||
W
|
||||
X
|
||||
Y
|
||||
Z
|
||||
:
|
||||
/
|
||||
-
|
@ -16,6 +16,20 @@ class OcrModel:
|
||||
return AlOcr(model_name='densenet-lite-gru', model_epoch=15, root='./bin/cnocr_models/azur_lane',
|
||||
name='azur_lane')
|
||||
|
||||
@cached_property
|
||||
def azur_lane_jp(self):
|
||||
# Folder: ./bin/cnocr_models/azur_lane_jp
|
||||
# Size: 3.29MB
|
||||
# Model: densenet-lite-gru
|
||||
# Epoch: 93
|
||||
# Validation accuracy: 99.38%
|
||||
# Font: Impact, VibeMO Compressed Pro Thin, Folk R
|
||||
# Charset: 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ:/- (Letter 'O' and <space> is not included)
|
||||
# _num_classes: 39
|
||||
from module.ocr.al_ocr import AlOcr
|
||||
return AlOcr(model_name='densenet-lite-gru', model_epoch=93, root='./bin/cnocr_models/azur_lane_jp',
|
||||
name='azur_lane_jp')
|
||||
|
||||
@cached_property
|
||||
def cnocr(self):
|
||||
# Folder: ./bin/cnocr_models/cnocr
|
||||
|
Loading…
x
Reference in New Issue
Block a user