Spaces:
Runtime error
Runtime error
specify sdk
Browse files- README.md +1 -2
- python_scripts/prepare_models.py +1 -1
- requirements.txt +2 -2
README.md
CHANGED
@@ -4,13 +4,12 @@ emoji: 👀
|
|
4 |
colorFrom: green
|
5 |
colorTo: green
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 3.
|
8 |
app_file: app.py
|
9 |
python_version: 3.8.10
|
10 |
pinned: false
|
11 |
---
|
12 |
|
13 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
14 |
# ChatAnything: Facetime Chat with LLM-Enhanced Personas
|
15 |
|
16 |
**Yilin Zhao\*, Shanghua Gao\*, Daquan Zhou\*, Xinbin Yuan\*, Zhijie Lin, Qibin Hou, Jiashi Feng**
|
|
|
4 |
colorFrom: green
|
5 |
colorTo: green
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 3.41.0
|
8 |
app_file: app.py
|
9 |
python_version: 3.8.10
|
10 |
pinned: false
|
11 |
---
|
12 |
|
|
|
13 |
# ChatAnything: Facetime Chat with LLM-Enhanced Personas
|
14 |
|
15 |
**Yilin Zhao\*, Shanghua Gao\*, Daquan Zhou\*, Xinbin Yuan\*, Zhijie Lin, Qibin Hou, Jiashi Feng**
|
python_scripts/prepare_models.py
CHANGED
@@ -27,7 +27,7 @@ MODEL_DIR='./MODELS'
|
|
27 |
os.makedirs(MODEL_DIR, exist_ok=True)
|
28 |
|
29 |
def prepare_sadtalker_models():
|
30 |
-
snapshot_download(repo_id='vinthony/SadTalker', local_dir=osp.join(MODEL_DIR, 'SadTalker'), local_dir_use_symlinks=True)
|
31 |
load_file_from_url(
|
32 |
url='https://github.com/xinntao/facexlib/releases/download/v0.1.0/alignment_WFLW_4HG.pth',
|
33 |
model_dir='facexlib/weights',
|
|
|
27 |
os.makedirs(MODEL_DIR, exist_ok=True)
|
28 |
|
29 |
def prepare_sadtalker_models():
|
30 |
+
# snapshot_download(repo_id='vinthony/SadTalker', local_dir=osp.join(MODEL_DIR, 'SadTalker'), local_dir_use_symlinks=True)
|
31 |
load_file_from_url(
|
32 |
url='https://github.com/xinntao/facexlib/releases/download/v0.1.0/alignment_WFLW_4HG.pth',
|
33 |
model_dir='facexlib/weights',
|
requirements.txt
CHANGED
@@ -43,8 +43,8 @@ future==0.18.3
|
|
43 |
gfpgan==1.3.8
|
44 |
google-auth==2.23.2
|
45 |
google-auth-oauthlib==1.0.0
|
46 |
-
gradio==3.
|
47 |
-
gradio_client==0.
|
48 |
greenlet==3.0.0
|
49 |
grpcio==1.59.0
|
50 |
h11==0.14.0
|
|
|
43 |
gfpgan==1.3.8
|
44 |
google-auth==2.23.2
|
45 |
google-auth-oauthlib==1.0.0
|
46 |
+
gradio==3.41.0
|
47 |
+
gradio_client==0.5.0
|
48 |
greenlet==3.0.0
|
49 |
grpcio==1.59.0
|
50 |
h11==0.14.0
|