How to use Danrisi/UltraReal_FineTune_Anima3 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Danrisi/UltraReal_FineTune_Anima3", dtype=torch.bfloat16, device_map="cuda") prompt = " Low-resolution camcorder video still, slightly blurry with visible video artifacts and lens flare from the sun, featuring warm and muted orange and blue tones from natural light during golden hour Young woman, late 20s, long dark hair, black leotard, big wings on her back, standing, visible back, desert landscape, mountains, trees" image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!