Untitled

 avatar
unknown
plain_text
5 months ago
564 B
8
Indexable
import torch
from diffusers import StableDiffusionPipeline

# Load the model
model_id = "runwayml/stable-diffusion-v1-5"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")

# Your Supra Game Prompt
prompt = "Photorealistic 4K gameplay screenshot, Toyota Supra MK4 widebody, drifting rain-slicked Tokyo, neon reflections, orange glowing brake rotors, high-speed motion blur, Unreal Engine 5 render, 8k resolution"

# Generate
image = pipe(prompt).images[0]

# Save
image.save("supra_drift.png")
Editor is loading...
Leave a Comment