Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions blend_gaussians.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,8 +520,8 @@ def merge_gaussians(
scene_vanilla = None
scene = None

ss_decoder = models.from_pretrained("JeffreyXiang/TRELLIS-image-large/ckpts/ss_dec_conv3d_16l8_fp16").eval().cuda()
pipeline = TrellisImageTo3DPipeline.from_pretrained("JeffreyXiang/TRELLIS-image-large")
ss_decoder = models.from_pretrained("jetx/trellis-image-large/ckpts/ss_dec_conv3d_16l8_fp16").eval().cuda()
pipeline = TrellisImageTo3DPipeline.from_pretrained("jetx/trellis-image-large")
pipeline.cuda()

rescaled_tiles = {}
Expand Down Expand Up @@ -634,7 +634,7 @@ def merge_gaussians(
UNCOND=False

if stitch_slats:
pipeline = TrellisImageTo3DPipeline.from_pretrained("JeffreyXiang/TRELLIS-image-large")
pipeline = TrellisImageTo3DPipeline.from_pretrained("jetx/trellis-image-large")
pipeline.cuda()
for tile in tqdm(grid_info, desc="Stitching slats"):
x, y, = [tile[k] for k in ('x', 'y')]
Expand Down
2 changes: 1 addition & 1 deletion run_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ def worker(prefix, tile_dict, gradio_url, blender_path, gpu_queue, generated_gri

def load_pipeline_in_thread(event, queue):
# Load the pipeline in a separate thread to avoid blocking the main thread
thread_pipeline = TrellisImageTo3DPipeline.from_pretrained("JeffreyXiang/TRELLIS-image-large")
thread_pipeline = TrellisImageTo3DPipeline.from_pretrained("jetx/trellis-image-large")
thread_pipeline.to("cuda")
queue.put(thread_pipeline)
event.set()
Expand Down