-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1012 Bytes
/
Copy pathpyproject.toml
File metadata and controls
55 lines (47 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deepseek-ocr-benchsuite"
version = "0.1.0"
description = "Unified benchmark and strict-gate toolkit for deepseek-ocr backends"
readme = "benchsuite/README.md"
requires-python = ">=3.12"
authors = [{ name = "TimmyOVO" }]
dependencies = []
[project.optional-dependencies]
bench = [
"numpy>=1.24",
"pillow>=10.0",
"tqdm>=4.66"
]
bench-glm = [
"torch>=2.4.0",
"torchvision",
"transformers @ git+https://github.com/huggingface/transformers.git"
]
bench-deepseek = [
"torch==2.6.0",
"torchvision",
"transformers==4.46.3",
"tokenizers==0.20.3",
"einops",
"addict",
"easydict",
"matplotlib",
"requests"
]
bench-paddle = [
"torch>=2.4.0",
"torchvision",
"transformers>=5.1.0"
]
bench-dots = [
"torch>=2.4.0",
"torchvision",
"transformers>=5.1.0"
]
[project.scripts]
benchsuite = "benchsuite.cli:main"
[tool.setuptools.packages.find]
include = ["benchsuite*"]