--- license: creativeml-openrail-m library_name: diffusers tags: - Safetensors - stable-diffusion - stable-diffusion-diffusers - text-to-image pipeline_tag: text-to-image --- # The Truality Engine ## TRUALITY ENGINE (PRO) ![Generated Sample](preview.jpeg) ### Description: >
DON'T USE VAE
SETTINGS
Steps: 35
with this model, too high means it takes longer to load, test it for each scene individually, keep it at 35 if you don't mind waiting a few seconds longer.
CFG: 3.5 to 11.5
The higher the value the higher the contrast and the amount of colors. The engine will listen more subtly to your prompt up till CFG 7. Everything above could be described as over-exaggerating your prompt to adding new features. A Lens Flare can become something entirely else. Definitely interesting if you feel like experimenting.
When using TI's and Lora's you should not go higher as 4.5
Best Size 512 x 768
Best Samplers: DPM++ 2M SDE KARRAS
HIRES FIX
Upscale a 512x 768 by 2x
UPSCALER for V3 4x UltraSharp
Clean and less grainy results, yet very detailed
(Resize Steps 15 to 25, Denoise 0.23-0.33)
UPSCALER for V1 & V2 & Pro: 4x_NMKD-Superscale-SP178000_G.pth
(Resize Steps 10 to 15, Denoise 0.17-0.33)
This upscaler provides a special layer of depth for photo realistic images, slightly grainy.
### Creator: Tower13Studios ### Civitai Page: https://civitai.com/models/158621 You can use this with the [🧨Diffusers library](https://github.com/huggingface/diffusers) ### Diffusers ```py from diffusers import StableDiffusionPipeline import torch model_id = "sam749/The-Truality-Engine-TRUALITY-ENGINE-PRO" pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) pipe = pipe.to("cuda") prompt = "masterpiece, best quality, 1girl, (colorful),(delicate eyes and face), volumatic light, ray tracing, bust shot ,extremely detailed CG unity 8k wallpaper,solo,smile" image = pipe(prompt).images[0] image.save("result.png") ```