Merge pull request #206 from VikParuchuri/dev
Some checks failed
Integration test / build (push) Has been cancelled

Python 3.10+
This commit is contained in:
Vik Paruchuri 2024-10-14 14:46:28 -07:00 committed by GitHub
commit 641de07c92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2192 additions and 2056 deletions

View File

@ -62,7 +62,7 @@ The weights for the models are licensed `cc-by-nc-sa-4.0`, but I will waive that
# Installation
You'll need python 3.9+ and PyTorch. You may need to install the CPU version of torch first if you're not using a Mac or a GPU machine. See [here](https://pytorch.org/get-started/locally/) for more details.
You'll need python 3.10+ and PyTorch. You may need to install the CPU version of torch first if you're not using a Mac or a GPU machine. See [here](https://pytorch.org/get-started/locally/) for more details.
Install with:

4242
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "surya-ocr"
version = "0.6.2"
version = "0.6.3"
description = "OCR, layout, reading order, and table recognition in 90+ languages"
authors = ["Vik Paruchuri <vik.paruchuri@gmail.com>"]
readme = "README.md"
@ -21,7 +21,7 @@ include = [
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13,!=3.9.7"
python = ">=3.10"
transformers = "^4.41.0"
torch = "^2.3.0"
pydantic = "^2.5.3"