Views
No views yet
r@ga to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
5pipeline.load_lora_weights('username/watch_raga_shift', weight_name='watch_raga_shift.safetensors')
6image = pipeline('r@ga A photo-realistic still life shoot from a close-up angle about a luxury Rolex watch on a wooden surface with a reflective surface, set against a dark and moody background with soft, warm lighting. the image also shows a gold Rolex Oyster Perpetual Datejust watch with a polished finish and a gold bracelet. on the right side of the image, the watch is placed on a dark surface, with its reflection visible on the wooden surface. the watch has a gold dial with luminous hands and hour markers, and a date window at the 3 o'clock position. the background is blurred, with a subtle, warm light illuminating the watch, creating a sense of depth and dimensionality. the overall mood is sophisticated and sophisticated, with the focus on the watch and its reflection in the dark surface.').images[0]
7image.save("my_image.png")