From e150058012fe0f5d6aa3be633ed4375b1f809924 Mon Sep 17 00:00:00 2001 From: Akasei Date: Mon, 16 Mar 2026 20:53:12 +0800 Subject: [PATCH] feat(batch): use steps=50, resolution=512, max_views=9 for RTX 3080 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 768 resolution causes OOM (14.6GB model activation) on RTX 3080 20GB. 512 is the practical maximum: texture model uses 6.59GB, leaving sufficient headroom. Increased max_views 6→9 for better texture coverage. Result: 9/9 images → textured GLB in 12.3 min total. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- batch_generate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batch_generate.py b/batch_generate.py index a743d50..ac49534 100644 --- a/batch_generate.py +++ b/batch_generate.py @@ -36,7 +36,7 @@ SEED = 1234 OCTREE_RESOLUTION = 256 NUM_CHUNKS = 200000 -TEXGEN_MAX_VIEWS = 6 +TEXGEN_MAX_VIEWS = 9 TEXGEN_RESOLUTION = 512