Upload 3 files
Browse files- README.md +7 -7
- app.py +4 -0
- requirements.txt +22 -0
README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
-
|
| 11 |
---
|
| 12 |
-
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Video Face Swap
|
| 3 |
+
emoji: 👱🏻♀️
|
| 4 |
+
colorFrom: pink
|
| 5 |
+
colorTo: indigo
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 4.39.0
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
+
disable_embedding: true
|
| 11 |
---
|
| 12 |
+
facefusion MIT License
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
exec(os.environ.get('CODE'))
|
requirements.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
--extra-index-url https://download.pytorch.org/whl/cu118
|
| 2 |
+
pysqlite3
|
| 3 |
+
python-telegram-bot
|
| 4 |
+
gfpgan==1.3.8
|
| 5 |
+
gradio==3.40.1
|
| 6 |
+
insightface==0.7.3
|
| 7 |
+
numpy==1.24.3
|
| 8 |
+
onnx==1.14.0
|
| 9 |
+
onnxruntime==1.15.1; python_version != '3.9' and sys_platform == 'darwin' and platform_machine != 'arm64'
|
| 10 |
+
onnxruntime-coreml==1.13.1; python_version == '3.9' and sys_platform == 'darwin' and platform_machine != 'arm64'
|
| 11 |
+
onnxruntime-gpu==1.15.1; sys_platform != 'darwin'
|
| 12 |
+
onnxruntime-silicon==1.13.1; sys_platform == 'darwin' and platform_machine == 'arm64'
|
| 13 |
+
opencv-python==4.8.0.74
|
| 14 |
+
opennsfw2==0.10.2
|
| 15 |
+
pillow==10.0.0
|
| 16 |
+
protobuf==4.23.4
|
| 17 |
+
psutil==5.9.5
|
| 18 |
+
realesrgan==0.3.0
|
| 19 |
+
tensorflow==2.13.0
|
| 20 |
+
tqdm==4.65.0
|
| 21 |
+
moviepy
|
| 22 |
+
cloudinary
|