--- tags: - text-to-image - flux - lora - diffusers - template:sd-lora - ai-toolkit widget: - text: Tudor Pelagos Ultra on dark mahogany surface, dramatic low-key lighting, extreme macro detail of titanium case output: url: samples/1748530914977__000003000_0.jpg - text: Tudor Pelagos Ultra with orange accents, professional product photography, black leather backdrop output: url: samples/1748530926620__000003000_1.jpg - text: Tudor Pelagos Ultra diving watch, underwater theme, bubbles and blue lighting effects output: url: samples/1748530938141__000003000_2.jpg - text: Tudor Pelagos 42mm on leather strap, vintage patina background, warm golden lighting output: url: samples/1748530949753__000003000_3.jpg - text: Tudor Pelagos 42 blue dial, macro shot of helium escape valve, professional lighting output: url: samples/1748530961380__000003000_4.jpg - text: Tudor Pelagos 42 titanium case, minimalist composition, neutral grey backdrop output: url: samples/1748530972912__000003000_5.jpg - text: Tudor Pelagos 39mm perfect wrist shot, natural skin tone, soft studio lighting output: url: samples/1748530984466__000003000_6.jpg - text: Tudor Pelagos 39 blue dial and bezel, ocean-inspired backdrop, aquatic blue tones output: url: samples/1748530995960__000003000_7.jpg - text: Tudor Pelagos 39 crown detail macro, side angle, professional product photography output: url: samples/1748531007468__000003000_8.jpg - text: Tudor Black Bay burgundy bezel, vintage leather book backdrop, warm ambient lighting output: url: samples/1748531019002__000003000_9.jpg - text: Tudor Black Bay snowflake hands detail, extreme macro focus, dramatic shadows output: url: samples/1748531030525__000003000_10.jpg - text: Tudor Black Bay on aged leather strap, distressed wood surface, vintage aesthetic output: url: samples/1748531042001__000003000_11.jpg base_model: black-forest-labs/FLUX.1-dev license: other license_name: flux-1-dev-non-commercial-license license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md --- # tudor_flux_lora_v1 Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit) ## Trigger words No trigger words defined. ## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc. Weights for this model are available in Safetensors format. [Download](/Jlonge4/jl-flux/tree/main) them in the Files & versions tab. ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers) ```py from diffusers import AutoPipelineForText2Image import torch pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda') pipeline.load_lora_weights('Jlonge4/jl-flux', weight_name='tudor_flux_lora_v1.safetensors') image = pipeline('Tudor Pelagos Ultra on dark mahogany surface, dramatic low-key lighting, extreme macro detail of titanium case').images[0] image.save("my_image.png") ``` For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)