forked from LiveCarta/ContentGeneration
Add skip-audio mode and resilient merge handling
This commit is contained in:
13
README.md
13
README.md
@@ -24,7 +24,10 @@ Docker (GPU):
|
||||
```bash
|
||||
cp .env.example .env
|
||||
docker build -t content-generation:latest .
|
||||
docker run --rm --gpus all --env-file .env -v "$(pwd)":/app -w /app content-generation:latest
|
||||
docker run --rm --gpus all --env-file .env \
|
||||
-v "$(pwd)":/app \
|
||||
-v "$HOME/.cache/huggingface":/root/.cache/huggingface \
|
||||
-w /app content-generation:latest
|
||||
```
|
||||
|
||||
First run (skip S3 upload):
|
||||
@@ -36,7 +39,11 @@ python run_video_pipeline.py --skip-s3-upload
|
||||
Docker first run (skip S3 upload):
|
||||
|
||||
```bash
|
||||
docker run --rm --gpus all --env-file .env -v "$(pwd)":/app -w /app content-generation:latest \
|
||||
docker run --rm --gpus all --env-file .env \
|
||||
-v "$(pwd)":/app \
|
||||
-v "$HOME/.cache/huggingface":/root/.cache/huggingface \
|
||||
-w /app \
|
||||
content-generation:latest \
|
||||
python run_video_pipeline.py --skip-s3-upload
|
||||
```
|
||||
|
||||
@@ -136,6 +143,7 @@ docker build -t content-generation:latest --build-arg INSTALL_OPTIONAL_ATTENTION
|
||||
docker run --rm --gpus all \
|
||||
--env-file .env \
|
||||
-v "$(pwd)":/app \
|
||||
-v "$HOME/.cache/huggingface":/root/.cache/huggingface \
|
||||
-w /app \
|
||||
content-generation:latest
|
||||
```
|
||||
@@ -146,6 +154,7 @@ docker run --rm --gpus all \
|
||||
docker run --rm --gpus all \
|
||||
--env-file .env \
|
||||
-v "$(pwd)":/app \
|
||||
-v "$HOME/.cache/huggingface":/root/.cache/huggingface \
|
||||
-w /app \
|
||||
content-generation:latest \
|
||||
python run_video_pipeline.py --skip-s3-upload --log-level DEBUG
|
||||
|
||||
Reference in New Issue
Block a user