TRELLIS Image-to-3D Finetuned Model

This is a finetuned version of the TRELLIS Image-to-3D generation model. It was finetuned using the MeshFleet dataset.

TRELLIS can generate high-quality 3D assets from single images, producing structured 3D representations including gaussian splatting, radiance fields, and meshes.

Model Description

This finetuned model contains all the necessary components for the TRELLIS Image-to-3D pipeline.

Usage

from trellis.pipelines import TrellisImageTo3DPipeline
from PIL import Image

# Load the pipeline
pipeline = TrellisImageTo3DPipeline.from_pretrained("path/to/this/model")
pipeline.cuda()

# Load input image
image = Image.open("path/to/your/image.jpg")

# Generate 3D assets
outputs = pipeline.run(image, seed=42)

# Access different 3D representations
gaussian_splatting = outputs['gaussian'][0]  # Gaussian splatting representation
radiance_field = outputs['radiance_field'][0]  # Radiance field representation
mesh = outputs['mesh'][0]  # Mesh representation

# Save outputs
gaussian_splatting.save("output_gs.ply")
radiance_field.save("output_rf.obj")
mesh.save("output_mesh.obj")

File Format

All model weights are stored in the same SafeTensors format (.safetensors) as the original weights. Configuration files (.json) contain model hyperparameters and architecture details.

Requirements

License

This model follows the same license as the original TRELLIS model.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for DamianBoborzi/TRELLIS-image-large_MeshFleet_ft

Finetuned
(3)
this model

Dataset used to train DamianBoborzi/TRELLIS-image-large_MeshFleet_ft