-
Notifications
You must be signed in to change notification settings - Fork 397
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation Problem #117
Comments
Change two lines (258,259) in setup.py: install_requires=[ |
Thank you very much, it worked! |
Have you implement this repo successfully in windows |
Yes. On Win 10 with miniconda. |
I ran into some other problems and kind of gave up. Any idea if it works for Windows 11? |
Please tell us what problems or errors you have. |
Thanks a lot for the immediate response. Actually, I think I managed to make it work after a fresh "reinstall" |
You can easily train the network using only the CPU. The tensorflow library will detect what it can run on. As for the language, by default ORC tesseract has English enabled. The program must force the language to be Greek or English+Greek. File InvoiceNet\invoicenet\common\util.py, line 95. data = pytesseract.image_to_data(img, output_type=Output.DICT) data = pytesseract.image_to_data(img, lang='grc', output_type=Output.DICT) |
You need to check what languages tesseract-ocr supports: c:\Program Files\Tesseract-OCR\tesseract.exe --list-langs |
Hi, I tried training using only CPU, it took a huge amount of time. Can I somehow use Google Colab's free GPUs for this? Do I have to make any modification to the code? |
On a normal computer, 5,000 invoices are processed and trained in about a few hours. It's enough once. Then the trained network works quickly. The only thing I see in the Google OCR code is the util.py file line 37: API keys for google ocros.environ["GOOGLE_APPLICATION_CREDENTIALS"]="google_api_keys.json" |
Hi, first of all is this project still active?
When trying to install on Windows 11 Anaconda after the pip install . command I get the following error:
Can anyone help me?
The text was updated successfully, but these errors were encountered: