Commit History

revert: back to PyTorch nightly cu128 (nightly + xformers) for Blackwell sm_120
872461b
Running

doradream commited on

fix: remove duplicate 'install' in pip command
7c840c2

doradream commited on

fix: use pytorch.org stable cu128 index for guaranteed torch+torchvision ABI compatibility
22eb351

doradream commited on

fix: replace mmengine set_random_seed import with local impl (avoids PyTorch JIT LaTeX bug)
03bd4d5

doradream commited on

fix: remove cu128 index pin — let pip auto-select best stable PyTorch
e08a6b6

doradream commited on

fix: switch from PyTorch nightly to stable (2.7+ supports Blackwell, no NVML bug)
26a3023

doradream commited on

fix: switch to expandable_segments allocator (less fragmentation than no-caching)
fe3eb36

doradream commited on

fix: set PYTORCH_NO_CUDA_MEMORY_CACHING before any torch import (was too late inside run_inference)
61620af

doradream commited on

fix: disable CUDACachingAllocator to workaround PyTorch nightly NVML bug on MIG GPU
bde1ad8

doradream commited on

fix: replace manual attention (OOM) with F.scaled_dot_product_attention (memory-efficient)
1751a82

doradream commited on

fix: enable cpu_offload to avoid OOM on 48GB MIG GPU
238044f

doradream commited on

fix: add _HAS_FLASH_ATTN guard — mirror xformers pattern to prevent NoneType call
ee8ee14

doradream commited on

fix: default USE_XFORMERS to False (env var unreliable in ZeroGPU context)
54f174f

doradream commited on

fix: disable flash_attn globally (not available on Blackwell)
a5355b1

doradream commited on

fix: disable xformers globally (Blackwell sm_120 not supported)
7f4e174

doradream commited on

fix: use black placeholder when nuScenes images missing (HF Space doesnt need real images)
87fd955

doradream commited on

fix: set num_workers=0 in inference config files (was overriding script default)
718883b

doradream commited on

fix: set num_workers=0 for ZeroGPU daemon process compatibility
ce2cdf0

doradream commited on

fix maps download: repo has expansion/*.json not nuscenes/maps/expansion/*.json
5e75f99

doradream commited on

add nuScenes maps/expansion download from doradream/magicdrive-data
0b24a02

doradream commited on

fix: robustly download ema.pt LFS file + strict check_env
035109e

doradream commited on

fix: from_pretrained must be a .pt file, not model/ dir
a7d5aa3

doradream commited on

fix: fallback to nn.LayerNorm when apex missing
159609a

doradream Claude commited on

fix: disable apex FusedLayerNorm (use nn.LayerNorm)
0030520

doradream Claude commited on

fix: resolve model.from_pretrained placeholder
7769d41

doradream Claude commited on

fix: move inference in-process to avoid ZeroGPU SIGSEGV (-11)
cbc51a7

doradream Claude commited on

Fix stdout pipe deadlock: merge stderr→stdout, read in thread
5079868

doradream commited on

Live progress bar: poll subprocess, update every 2s
921407c

doradream commited on

Check for output video even on inference error
ce7ad9d

doradream commited on

Add CUDA_LAUNCH_BLOCKING=1 to get real error traceback
01856c3

doradream commited on

Fix permission: use home dir instead of /data for marker
c19286b

doradream commited on

Separate PyTorch upgrade and mmcv checks
ee9c6b6

doradream commited on

Create /data directory before writing marker file
def2f55

doradream commited on

Upgrade PyTorch to nightly for Blackwell sm_120 support
098e8bb

doradream commited on

Switch dtype from bf16 to fp16
eee2454

doradream commited on

Reduce sampling steps to 15, disable CPU offload for speed
039621b

doradream commited on

Disable xformers to avoid SIGSEGV from CUDA version mismatch
94c294f

doradream commited on

Set ZeroGPU timeout to 5 minutes (duration=300)
0a5cc2b

doradream commited on

Fix numpy version conflict: numpy<2.0 + pickle compat shim
2a279c8

doradream commited on

Bump numpy>=2.0.0 for pickle compatibility
01f71a9

doradream commited on

Skip flash-attn: make import lazy (inference uses xformers)
94fa5eb

doradream commited on

Move flash-attn to runtime install (needs torch in build env)
80bf914

doradream commited on

Add flash-attn and safetensors to requirements.txt
c77a9f2

doradream commited on

Fix: remove torchvision pin, add transformers, patch write_video import
c56df53

doradream commited on

Pin torchvision==0.19.0 to fix write_video import error
8afaa93

doradream commited on

Fix dataset downloads: add repo_type='dataset' for HF datasets
c5e0b5d

doradream commited on

Add try/except and better error messages to download_weights
ee1ffee

doradream commited on

Add data pkl files to check_env and download list
ce9c79c

doradream commited on

Fix: always enable Generate button, check weights at runtime
73dd459

doradream commited on

Fix download: use Popen with streaming output instead of silent subprocess.run
ead99a7

doradream commited on