--- license: other license_name: bespoke-lora-trained-license license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=RentCivit&allowDerivatives=True&allowDifferentLicense=False tags: - text-to-image - stable-diffusion - lora - diffusers - template:sd-lora - migrated - pencil - monochrome - sketch art - style - etching base_model: stabilityai/stable-diffusion-xl-base-1.0 instance_prompt: Etching widget: - text: 'detailed etching of a Walrus, bright and plain background' parameters: negative_prompt: the mona lisa output: url: >- 14047343.jpeg - text: 'etching, still life plasma cutter in a vase, light background, casting a shadow on the wall' parameters: negative_prompt: the mona lisa output: url: >- 13250987.jpeg - text: 'etching, moondog wizard whitebeard playing with a etch-a-sketch writing out the word "etching", the wizard is looking at the drawing board with intensity, the word "etching" is written in a single continous line, and a tadpole person drawing,' parameters: negative_prompt: the mona lisa output: url: >- 13250950.jpeg - text: 'etching, Selena Gomez using virtual reality headset in a modern office, at nightfall' parameters: negative_prompt: the mona lisa output: url: >- 13250984.jpeg - text: 'etching, batman american gothic, holding a pitchfork Catwoman wearing a catsuit and mask' parameters: negative_prompt: the mona lisa output: url: >- 13251018.jpeg - text: 'etching, Uma Thurman leaving las vegas, at twilight ' parameters: negative_prompt: the mona lisa output: url: >- 13250998.jpeg - text: 'etching, alternative movie poster for "Fantastic Mr. Fox",' output: url: >- 13251014.jpeg - text: 'etching, simple portrait of moondog wizard whitebeard wearing a large wizard’s hat' parameters: negative_prompt: the mona lisa output: url: >- 13250990.jpeg - text: 'etching, cousin itt dressed as a hay bale, holding a pitchfork, messy hair, made of straws' parameters: negative_prompt: the mona lisa output: url: >- 13251462.jpeg - text: 'etching, cousin itt dressed as a hay bale, holding a pitchfork, messy hair, made of straws' parameters: negative_prompt: the mona lisa output: url: >- 13251479.jpeg - text: 'etching, cousin itt dressed as a hay bale, holding a pitchfork, messy hair, made of straws' output: url: >- 13251571.jpeg - text: 'etching, cousin itt dressed as a hay bale, holding a pitchfork, messy hair, made of straws' output: url: >- 13251588.jpeg - text: 'etching, Angela Merkel pointing at a kangaroo in the outback ' output: url: >- 13251781.jpeg - text: 'etching, Angela Merkel pointing at a whiteboard in a meeting room, at sunset ' output: url: >- 13251802.jpeg - text: 'etching, Angela Merkel pointing at a whiteboard in a meeting room, detailed' output: url: >- 13251815.jpeg - text: 'etching, kim jong un pointing at a possum' output: url: >- 13251850.jpeg - text: 'dark fantasy etching of a skull with a golden crown, dark background, intricate' parameters: negative_prompt: the mona lisa output: url: >- 13251906.jpeg - text: 'etching, A rotund anthropomorphic swine is submerged up to its waist in thick, muddy waters, with agricultural structures visible in the distance. A chubby human-like hog wades in deep mud, farmhouses and barns stretching out behind it. A plump creature with pig-like features stands in waist-high muck, a backdrop of farm buildings framing the scene.' parameters: negative_prompt: the mona lisa output: url: >- 13251986.jpeg - text: 'etching of a __bird__' parameters: negative_prompt: the mona lisa output: url: >- 13252034.jpeg - text: ' ' output: url: >- 13252039.jpeg --- # Wizard's Vintage Etchings ([CivitAI](https://civitai.com/models/)) ## Model description

Etching art style LoRA that produces mostly monochrome images.

Use etching, in your prompt to trigger the style.

Contrast Guide
dark background for more shadows
bright background for more contrast
plain background for more isolated subject

Play around with your CFG settings, monochrome images usually handles a higher CFG than usual. A higher CFG gives more contrast and a lower CFG will make it softer.

LoRA Strength Guide
Strength 0.5 = Less style, more tidy and clean, better coherence
Strength 0.80 = More style, mid coherent images
Strength 1.0 = Very stylized, more abstract, more impressionistic



Other settings:

Checkpoint: PixelWave 09
Sampler: DPM++ 2m / DPM++ SDE
Scheduler: Align Your Steps (AYS)
CFG: 2.5

Notice:
Trained on around 40 high-res prints at 1536px max.res.
Most of the training images are from early 20th century scandinavia (Anders Zorn), so you might run in to some specific bias from that time-era/location.

## Trigger words You should use `Etching`, `dark background`, `bright and plain background`, `pencil sketch`, `oil painting` to trigger the image generation. ## Download model Weights for this model are available in Safetensors format. [Download](/WizWhite/wizard-s-vintage-etchings/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 device = "cuda" if torch.cuda.is_available() else "cpu" pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to(device) pipeline.load_lora_weights('WizWhite/wizard-s-vintage-etchings', weight_name='Wizards_Etchings-000008.safetensors') image = pipeline('`Etching`, `dark background`, `bright and plain background`, `pencil sketch`, `oil painting`').images[0] ``` 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)