Spaces:
Running on Zero
Running on Zero
Kazuto Nakashima commited on
Commit ·
6d52d5c
1
Parent(s): bdd4fff
Refactor dependencies: remove unused packages from pyproject.toml and create requirements.txt
Browse files- pyproject.toml +0 -12
- requirements.txt +10 -0
pyproject.toml
CHANGED
|
@@ -5,25 +5,13 @@ description = "DRUM: Diffusion-based Raydrop-aware Unpaired Mapping for Sim2Real
|
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = "==3.10.*"
|
| 7 |
dependencies = [
|
| 8 |
-
"accelerate==0.22.0",
|
| 9 |
-
"datasets==2.16.0",
|
| 10 |
"deepinv==0.4.0",
|
| 11 |
"einops==0.6.1",
|
| 12 |
-
"ema-pytorch==0.7.9",
|
| 13 |
"gradio==6.13.0",
|
| 14 |
"huggingface-hub==1.11.0",
|
| 15 |
-
"imageio==2.34.0",
|
| 16 |
-
"imageio-ffmpeg==0.4.9",
|
| 17 |
-
"joblib==1.5.3",
|
| 18 |
-
"kornia==0.7.0",
|
| 19 |
-
"matplotlib==3.7.1",
|
| 20 |
"numba==0.57.0",
|
| 21 |
"pydantic==2.6.3",
|
| 22 |
-
"rich==13.5.1",
|
| 23 |
-
"scipy==1.11.1",
|
| 24 |
-
"simple-parsing==0.1.5",
|
| 25 |
"spaces==0.48.3",
|
| 26 |
-
"tensorboard==2.14.0",
|
| 27 |
"torch==2.11.0",
|
| 28 |
"torchvision==0.26.0",
|
| 29 |
"tqdm==4.66.1",
|
|
|
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = "==3.10.*"
|
| 7 |
dependencies = [
|
|
|
|
|
|
|
| 8 |
"deepinv==0.4.0",
|
| 9 |
"einops==0.6.1",
|
|
|
|
| 10 |
"gradio==6.13.0",
|
| 11 |
"huggingface-hub==1.11.0",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
"numba==0.57.0",
|
| 13 |
"pydantic==2.6.3",
|
|
|
|
|
|
|
|
|
|
| 14 |
"spaces==0.48.3",
|
|
|
|
| 15 |
"torch==2.11.0",
|
| 16 |
"torchvision==0.26.0",
|
| 17 |
"tqdm==4.66.1",
|
requirements.txt
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
deepinv==0.4.0
|
| 2 |
+
einops==0.6.1
|
| 3 |
+
gradio==6.13.0
|
| 4 |
+
huggingface-hub==1.11.0
|
| 5 |
+
numba==0.57.0
|
| 6 |
+
pydantic==2.6.3
|
| 7 |
+
spaces==0.48.3
|
| 8 |
+
torch==2.11.0
|
| 9 |
+
torchvision==0.26.0
|
| 10 |
+
tqdm==4.66.1
|