How to use from the
Use from the
Diffusers library
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
from diffusers.utils import load_image

# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("nielsr/VTON360-THuman2.0", dtype=torch.bfloat16, device_map="cuda")

prompt = "Turn this cat into a dog"
input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png")

image = pipe(image=input_image, prompt=prompt).images[0]

VTON360 checkpoint for THuman2.0

This repository contains the checkpoint-30000 model bundle for the THuman2.0 experiment released with VTON 360: High-Fidelity Virtual Try-On from Any Viewing Direction (CVPR 2025).

Use it with the custom implementation in the official VTON360 repository. The repository README instructs users to place this checkpoint under src/multiview_consist_edit/checkpoints and run src/multiview_consist_edit/infer_tryon_multi.py.

from huggingface_hub import snapshot_download

snapshot_download(
    repo_id="nielsr/VTON360-THuman2.0",
    local_dir="src/multiview_consist_edit/checkpoints/thuman_tryon_mvattn_multi",
)

The released configuration also expects:

Provenance and attribution

The checkpoint is a derivative of Stable Diffusion v1.5 and retains the CreativeML Open RAIL-M license. Users must also follow the licenses and terms of VTON360, its code dependencies, and the underlying THuman data.

Downloads last month
-
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for nielsr/VTON360-THuman2.0

Finetuned
(392)
this model

Paper for nielsr/VTON360-THuman2.0