
This is the initial release focused on achieving photorealistic results. However, please note that the model's hands generation may have some limitations at this stage, and I'm actively exploring training techniques to enhance it.
1from diffusers import StableDiffusionPipeline
2import torch
3
4model_id = "sam749/Photon-v1"
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")