Spaces:
Runtime error
Runtime error
Commit ·
9e5e1da
1
Parent(s): 6d1e084
requirements changed
Browse files- CodeFormer/requirements.txt +17 -17
- requirements.txt +50 -9
CodeFormer/requirements.txt
CHANGED
|
@@ -1,17 +1,17 @@
|
|
| 1 |
-
addict
|
| 2 |
-
future
|
| 3 |
-
lmdb
|
| 4 |
-
numpy
|
| 5 |
-
opencv-python
|
| 6 |
-
Pillow
|
| 7 |
-
pyyaml
|
| 8 |
-
requests
|
| 9 |
-
scikit-image
|
| 10 |
-
scipy
|
| 11 |
-
tb-nightly
|
| 12 |
-
torch>=1.7.1
|
| 13 |
-
torchvision
|
| 14 |
-
tqdm
|
| 15 |
-
yapf
|
| 16 |
-
lpips
|
| 17 |
-
gdown # supports downloading the large file from Google Drive
|
|
|
|
| 1 |
+
# addict
|
| 2 |
+
# future
|
| 3 |
+
# lmdb
|
| 4 |
+
# numpy
|
| 5 |
+
# opencv-python
|
| 6 |
+
# Pillow
|
| 7 |
+
# pyyaml
|
| 8 |
+
# requests
|
| 9 |
+
# scikit-image
|
| 10 |
+
# scipy
|
| 11 |
+
# tb-nightly
|
| 12 |
+
# torch>=1.7.1
|
| 13 |
+
# torchvision
|
| 14 |
+
# tqdm
|
| 15 |
+
# yapf
|
| 16 |
+
# lpips
|
| 17 |
+
# gdown # supports downloading the large file from Google Drive
|
requirements.txt
CHANGED
|
@@ -1,14 +1,55 @@
|
|
| 1 |
-
gradio
|
| 2 |
-
opencv-python
|
| 3 |
-
insightface
|
| 4 |
-
onnxruntime
|
| 5 |
-
onnx
|
| 6 |
-
huggingface_hub
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
numpy
|
| 8 |
-
|
| 9 |
-
torchvision
|
| 10 |
scipy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
basicsr==1.4.2
|
| 12 |
realesrgan
|
| 13 |
lpips
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# gradio
|
| 2 |
+
# opencv-python
|
| 3 |
+
# insightface
|
| 4 |
+
# onnxruntime
|
| 5 |
+
# onnx
|
| 6 |
+
# huggingface_hub
|
| 7 |
+
# numpy
|
| 8 |
+
# torch
|
| 9 |
+
# torchvision
|
| 10 |
+
# scipy
|
| 11 |
+
# basicsr==1.4.2
|
| 12 |
+
# realesrgan
|
| 13 |
+
# lpips
|
| 14 |
+
# basicsr==1.4.2
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
# Core (CPU versions of torch/torchvision)
|
| 21 |
+
torch==1.12.1+cpu
|
| 22 |
+
torchvision==0.13.1+cpu
|
| 23 |
+
-f https://download.pytorch.org/whl/cpu/torch_stable.html
|
| 24 |
+
|
| 25 |
numpy
|
| 26 |
+
Pillow
|
|
|
|
| 27 |
scipy
|
| 28 |
+
scikit-image
|
| 29 |
+
tqdm
|
| 30 |
+
yapf
|
| 31 |
+
addict
|
| 32 |
+
future
|
| 33 |
+
lmdb
|
| 34 |
+
pyyaml
|
| 35 |
+
requests
|
| 36 |
+
gdown
|
| 37 |
+
|
| 38 |
+
# CodeFormer + ESRGAN deps
|
| 39 |
basicsr==1.4.2
|
| 40 |
realesrgan
|
| 41 |
lpips
|
| 42 |
+
facexlib==0.2.5
|
| 43 |
+
|
| 44 |
+
# Face Swap deps
|
| 45 |
+
insightface
|
| 46 |
+
onnxruntime
|
| 47 |
+
onnx
|
| 48 |
+
opencv-python
|
| 49 |
+
|
| 50 |
+
# Hugging Face + UI
|
| 51 |
+
gradio
|
| 52 |
+
huggingface_hub
|
| 53 |
+
|
| 54 |
+
# Logging / tensorboard
|
| 55 |
+
tb-nightly
|