--- tags: - text-to-image - lora - diffusers - template:sd-lora - ai-toolkit base_model: Qwen/Qwen-Image license: creativeml-openrail-m inference: parameters: width: 1024 height: 1024 widget: - text: >- a concert poster with a teal background, bold jagged text at the top reads “Los Perros Muertos”, the artwork features five large illustrated dogs with tan fur and black snouts, arranged in a group portrait, with star-like shapes and diagonal white beams around them, event info at the bottom says “English Masteers · Morel Cur Moblpiet · Elliidos”, signed “Beboneerangs” output: url: images/perros.jpeg - text: >- a concert poster with a colorful background divided into red, teal, and purple sections, bold jagged text at the top reads “Los Pisapollos”, the artwork shows an illustrated musician with long dark hair playing an electric guitar, the image appears fractured with white diagonal lines cutting through it, star-like shapes are scattered around, event info at the bottom says “Jueves 8 de Diciembre · Mr. Jones (S. Martín Sur 618 G. Cruz) · 22 HS”, signed output: url: images/pisapollos.jpeg - text: >- a concert poster with a blue zebra-striped background, bold jagged text at the top reads “Putas del FMI”, the artwork shows four illustrated women in flashy outfits with big sunglasses and bold hairstyles, holding money and cheering, behind them are palm trees and dark silhouettes of buildings, in the foreground a bright pink vintage car with a black stripe is prominently displayed, event info at the bottom output: url: images/putas.jpeg - text: >- a poster with a white background, bold jagged red text at the top reads “Cosos Raros”, the artwork shows a group of illustrated characters in retro style, with a central boy in a white shirt holding up his hand, surrounded by other figures including women, men, and a policeman in uniform, at the bottom three kids ride bicycles with glowing headlights, the overall composition mimics a vintage adventure series ensemble cast illustration output: url: images/raros.jpg - text: >- a blonde 55 year old ugly woman with long hair, thin face, large thin nose. She is cooking a cake with dollar bills over it. bold text reads "La Pastelera" output: url: images/la-pastelera-2.png - text: >- a concert poster with a pink background, a crazy middle age fat man with messy hair and sidebums, bold black text reads “Motochorros de La Rosada” output: url: images/motochorros-rosada.png --- # alergico-qwen-image-lora Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit) ## About the artist Casivaras This model was trained using artwork from Casivaras (Gonzalo Varas) with his permission. Gonzalo Varas is an artist living in Mendoza, Argentina. You can enjoy his wonderful art pieces and support him here: * https://www.instagram.com/casivaras * https://casivaras.empretienda.com.ar/ -------- # Gallery ## 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](lichorosario/alergico-qwen-image-lora/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('Qwen/Qwen-Image', torch_dtype=torch.bfloat16).to('cuda') pipeline.load_lora_weights('lichorosario/alergico-qwen-image-lora', weight_name='alergico-qwen-image_000002000.safetensors') image = pipeline('a beautiful landscape').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)