Attention-OCR
Attention-OCR copied to clipboard
Does it support special ascii characters ?
Traceback (most recent call last):
File "src/launcher.py", line 146, in
Can it be modified to ignore it?
Hey did you find the solution?
you should find what id your special symbol has in unicode table, then you can do something like: "assert 96 < ord(c) < 123 or 47 < ord(c) < 58 or ord(c) == you_symbol_id"