Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
H-Liu1997
/
TANGO
like
294
Running
on
L40S
App
Files
Files
Community
19
18ce27f
TANGO
/
Wav2Lip
/
scripts
/
run-prod.sh
H-Liu1997
init
31f2f28
29 days ago
raw
Copy download link
history
blame
Safe
240 Bytes
#!/usr/bin/env bash
NAME=wav2lip
set
-x
docker
rm
-f
$NAME
docker build . -t
$NAME
docker run -d --restart always \
--name
$NAME
\
-v
$PWD
/checkpoints:/src/checkpoints \
-p 5001:5000 \
--gpus all \
$NAME
docker logs -f
$NAME