Views
No views yet
ComfyUI/
└── models/
├── Pixal3D/
│ ├── TencentARC_Pixal3D/ # Shape & Texture SLat checkpoints
│ ├── briaai_RMBG-2.0/ # Background removal model
│ ├── camenduru_dinov3-vitl16-pretrain-lvd... # DINOv3 ViT pretrain weights
│ └── torch_hub/ # Neighborhood Attention Flow (NAF) upsampler weights
│ └── hub/
│ └── checkpoints/
│ └── naf_release.pth
│
└── geometry_estimation/ # MoGe Camera & Normal estimation models
├── moge_1_vitl_fp16.safetensors
└── moge_2_vitl_normal_fp16.safetensorsPixal3D and geometry_estimation folders from this repository.models/ directory:
Pixal3D/ folder to ComfyUI/models/Pixal3D/geometry_estimation/ folder to ComfyUI/models/geometry_estimation/1# Install Hugging Face Hub library
2pip install huggingface_hub
3
4# Download Pixal3D models
5hf download vuong69/pixal3d-models --local-dir ./models --local-dir-use-symlinks Falsedownload_if_missing = false (since all weights are already locally present in the correct path).