Views
No views yet

Private Model Release
This is my finetuned private Model which is based on the Z Model with a merge of finetuned Photo Lora to improve photorealistic outcomes, dont expect too much change to the Z VersionThis is finally the last model update to comei swear
1from diffusers import StableDiffusionPipeline
2import torch
3
4model_id = "sm09-dev/epicIndiPhotoGasm"
5pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
6pipe = pipe.to("cuda")
7
8prompt = "masterpiece, best quality, 1girl, (colorful),(delicate eyes and face), volumatic light, ray tracing, bust shot ,extremely detailed CG unity 8k wallpaper,solo,smile"
9image = pipe(prompt).images[0]
10
11image.save("result.png")