Transformers How to use lijiayangCS/DiTFuse with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-to-image", model="lijiayangCS/DiTFuse") # Load model directly
from transformers import DiTFuse
model = DiTFuse.from_pretrained("lijiayangCS/DiTFuse", dtype="auto")