Views
No views yet
microsoft/TRELLIS-image-large:denoiser: an IP-Adapter sparse-structure flow model.latent_projector: the latent conditioning projector used by the denoiser.1denoiser/
2├── config.json
3└── model.safetensors
4latent_projector/
5├── config.json
6└── model.safetensorshuggingface_hub, then pass the component
files to the HIVE-3D pipeline:1from pathlib import Path
2
3from huggingface_hub import snapshot_download
4from trellis.pipelines.test_pipeline import TestImageToSlatPipeline
5
6checkpoint_root = Path(snapshot_download("mocun123/HIVE-3D"))
7
8pipeline = TestImageToSlatPipeline.from_pretrained(
9 "microsoft/TRELLIS-image-large",
10 checkpoint_root / "denoiser/model.safetensors",
11 checkpoint_root / "latent_projector/model.safetensors",
12 checkpoint_root / "denoiser/config.json",
13 checkpoint_root / "latent_projector/config.json",
14)
15pipeline.cuda()14c679dd55812709b2fa39547f714d63aeabe62f5b63fcf0191fee182ce4aa77a denoiser/model.safetensors
2a8ce9615599020a7bf5c26538c7764431440da51439d32aeb5dc0815ca97369f latent_projector/model.safetensorsmicrosoft/TRELLIS-image-large
model. This repository does not redistribute the TRELLIS base-model weights;
they are downloaded from the official repository at runtime.