Commit
·
429742d
0
Parent(s):
build: add pyproject.toml and requirements.txt
Browse files- pyproject.toml +16 -0
- requirements.txt +5 -0
- uv.lock +0 -0
pyproject.toml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "hf"
|
3 |
+
version = "0.0.1"
|
4 |
+
description = "Hybrid Transformer for Multi-Focus Image Fusion - A deep learning model combining Focal Transformer and CrossViT for image fusion tasks"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.12"
|
7 |
+
dependencies = [
|
8 |
+
"gradio>=5.39.0",
|
9 |
+
"numpy>=1.26.4",
|
10 |
+
"pillow>=11.3.0",
|
11 |
+
"torch>=2.2.2",
|
12 |
+
"torchvision>=0.17.2",
|
13 |
+
]
|
14 |
+
|
15 |
+
[tool.uv]
|
16 |
+
required-environments = ["sys_platform=='darwin' and platform_machine=='x86_64'"]
|
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
torch
|
2 |
+
torchvision
|
3 |
+
gradio
|
4 |
+
numpy
|
5 |
+
Pillow
|
uv.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|