Spaces:
Running
on
Zero
Running
on
Zero
Try python 3.12
Browse filesIt seems that the problem was pytorch version... Trying this.
- README.md +1 -1
- pyproject.toml +9 -4
README.md
CHANGED
|
@@ -8,7 +8,7 @@ sdk_version: 6.0.2
|
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
| 11 |
-
python_version: "3.
|
| 12 |
---
|
| 13 |
|
| 14 |
# 🖼️ Labelizer - AI Image Labeling Tool
|
|
|
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
| 11 |
+
python_version: "3.12"
|
| 12 |
---
|
| 13 |
|
| 14 |
# 🖼️ Labelizer - AI Image Labeling Tool
|
pyproject.toml
CHANGED
|
@@ -2,13 +2,18 @@
|
|
| 2 |
name = "labelm2"
|
| 3 |
version = "0.1.0"
|
| 4 |
description = "Default template for PDM package"
|
| 5 |
-
authors = [
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
]
|
| 8 |
-
dependencies = ["gradio>=6.0.2", "torch>=2.9.1", "transformers>=4.57.3", "pillow>=12.0.0", "spaces>=0.44.0", "networkx>=3.0,<3.6"]
|
| 9 |
requires-python = ">=3.10,<3.13"
|
| 10 |
readme = "README.md"
|
| 11 |
-
license = {text = "MIT"}
|
| 12 |
|
| 13 |
|
| 14 |
[tool.pdm]
|
|
|
|
| 2 |
name = "labelm2"
|
| 3 |
version = "0.1.0"
|
| 4 |
description = "Default template for PDM package"
|
| 5 |
+
authors = [{ name = "Patrice Ferlet", email = "[email protected]" }]
|
| 6 |
+
dependencies = [
|
| 7 |
+
"gradio>=6.0.2",
|
| 8 |
+
"torch>=2.9.1",
|
| 9 |
+
"transformers>=4.57.3",
|
| 10 |
+
"pillow>=12.0.0",
|
| 11 |
+
"spaces>=0.44.0",
|
| 12 |
+
"networkx>=3.0,<3.6",
|
| 13 |
]
|
|
|
|
| 14 |
requires-python = ">=3.10,<3.13"
|
| 15 |
readme = "README.md"
|
| 16 |
+
license = { text = "MIT" }
|
| 17 |
|
| 18 |
|
| 19 |
[tool.pdm]
|