Views
No views yet
Euler or Euler ANormal or Beta16-243-6832x1200 (or similar aspect ratios with a total area around 1024x1024)1536x resolutions.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained(
5"VelvetToroyashi/WahtasticMerge",
6torch_dtype=torch.float16,
7variant="fp16",
8use_safetensors=True
9).to("cuda")
10
11prompt = "a majestic fantasy landscape, vibrant colors, epic, detailed, masterpiece"
12negative_prompt = "low quality, bad anatomy, deformed, ugly, distorted"
13
14image = pipeline(
15prompt=prompt,
16negative_prompt=negative_prompt,
17num_inference_steps=20,
18guidance_scale=5,
19height=1200,
20width=832
21).images[0]
22
23image.save("wahtastic_image.png")noobai-XL-Vpred-1.0noobai-XL-Vpred-1.0, which adheres to the Fair AI Public License 1.0 - SD. Please review the original license for full terms and conditions regarding usage, including commercial use and derivative works.