Spaces:
Running
Running
Upload 3 files
Browse files- .gitignore +12 -0
- mypy.ini +7 -0
- requirements.txt +18 -0
.gitignore
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
output/
|
2 |
+
roop/__pycache__
|
3 |
+
roop/processors/frame/__pycache__
|
4 |
+
roop/frame/__pycache__
|
5 |
+
flagged/
|
6 |
+
*.jpg
|
7 |
+
*.pyc
|
8 |
+
*.pth
|
9 |
+
*.onnx
|
10 |
+
.idea
|
11 |
+
.vscode
|
12 |
+
models/
|
mypy.ini
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[mypy]
|
2 |
+
check_untyped_defs = True
|
3 |
+
disallow_any_generics = True
|
4 |
+
disallow_untyped_calls = True
|
5 |
+
disallow_untyped_defs = True
|
6 |
+
ignore_missing_imports = True
|
7 |
+
strict_optional = False
|
requirements.txt
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
--extra-index-url https://download.pytorch.org/whl/cu118
|
2 |
+
|
3 |
+
numpy==1.24.3
|
4 |
+
opencv-python==4.8.0.74
|
5 |
+
onnx==1.14.0
|
6 |
+
insightface==0.7.3
|
7 |
+
psutil==5.9.5
|
8 |
+
tk==0.1.0
|
9 |
+
customtkinter==5.2.0
|
10 |
+
tkinterdnd2==0.3.0; sys_platform != 'darwin' and platform_machine != 'arm64'
|
11 |
+
tkinterdnd2-universal==1.7.3; sys_platform == 'darwin' and platform_machine == 'arm64'
|
12 |
+
pillow==10.0.0
|
13 |
+
onnxruntime-gpu==1.15.1; sys_platform != 'darwin'
|
14 |
+
tensorflow==2.13.0
|
15 |
+
opennsfw2==0.10.2
|
16 |
+
protobuf==4.23.4
|
17 |
+
tqdm==4.65.0
|
18 |
+
gfpgan==1.3.8
|