Spaces:
Running on Zero
Running on Zero
Upload pyproject.toml
Browse files- pyproject.toml +25 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "isl-synthetic-ocr"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.13"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"pillow>=11.3.0",
|
| 9 |
+
"omegaconf>=2.3.0",
|
| 10 |
+
"datasets>=4.1.0",
|
| 11 |
+
"torch>=2.8.0",
|
| 12 |
+
"transformers>=4.56.2",
|
| 13 |
+
"accelerate>=1.10.1",
|
| 14 |
+
"einops>=0.8.1",
|
| 15 |
+
"peft>=0.17.1",
|
| 16 |
+
"wandb>=0.22.0",
|
| 17 |
+
"gradio>=5.47.0",
|
| 18 |
+
"dataclasses>=0.8",
|
| 19 |
+
"pyfonts>=1.1.1",
|
| 20 |
+
]
|
| 21 |
+
|
| 22 |
+
[dependency-groups]
|
| 23 |
+
dev = [
|
| 24 |
+
"ipykernel>=6.30.1",
|
| 25 |
+
]
|