From b21ba2ec40546f244b2d24c503b070365260ba84 Mon Sep 17 00:00:00 2001 From: Wellington Marthas Date: Wed, 18 Feb 2026 23:18:17 -0300 Subject: [PATCH] Add initial README.md with build and run instructions --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d681aac --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +## Piper Train + +```bash +podman build -t piper-train . + +podman run --rm -it \ + --device nvidia.com/gpu=all \ + --shm-size=8g \ + -v $(pwd)/data:/data \ + -v $(pwd)/data/logs:/piper/lightning_logs \ + piper-train +```