init piper

This commit is contained in:
2025-08-20 21:28:01 +08:00
parent 90568c3dc1
commit 4e96a94117
234 changed files with 66374 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# Follow instructions here: https://docs.docker.com/config/containers/resource_constraints/#access-an-nvidia-gpu
docker run \
-it \
--gpus all \
-w "$PWD" \
--user "$(id -u):$(id -g)" \
--ipc=host \
-v "${HOME}:${HOME}" \
-v /media/cache:/media/cache:ro \
-v /etc/hostname:/etc/hostname:ro \
-v /etc/localtime:/etc/localtime:ro \
larynx2-train \
"$@"