Views
No views yet
etching, in your prompt to trigger the style. dark background for more shadows bright background for more contrast plain background for more isolated subjectCFG settings, monochrome images usually handles a higher CFG than usual. A higher CFG gives more contrast and a lower CFG will make it softer.Checkpoint: PixelWave 09Sampler: DPM++ 2m / DPM++ SDE Scheduler: Align Your Steps (AYS)CFG: 2.5Etching, dark background, bright and plain background, pencil sketch, oil painting to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4device = "cuda" if torch.cuda.is_available() else "cpu"
5
6pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to(device)
7pipeline.load_lora_weights('WizWhite/wizard-s-vintage-etchings', weight_name='Wizards_Etchings-000008.safetensors')
8image = pipeline('`Etching`, `dark background`, `bright and plain background`, `pencil sketch`, `oil painting`').images[0]