Instructions to use Anzhc/Noobai11-EQ with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Anzhc/Noobai11-EQ with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Anzhc/Noobai11-EQ", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
EQ-Adapted Noobai11 Unet
Using B3/B4/B5/B7 SDXL EQ VAE from here: https://huggingface.co/Anzhc/MS-LC-EQ-D-VR_VAE
You need Reflect pad in conv layers of VAE to properly use it(otherwise there will be some artefacts on edges), refer to VAE repo for instructions. If you have trained without this - don't worry, just add modification and do a small tune to fix up artefacts on edges.
ComfyUI/SwarmUI padding for VAEs - https://github.com/Jelosus2/comfyui-vae-reflection
Trainer fork with optional padding (loras only) - https://github.com/Jelosus2/LoRA_Easy_Training_Scripts
This is an EQ adapted unet, that learned to denoise clean latent representations, as opposed to noised default SDXL VAE representation.
This halves loss in training. Yep.
In my tests it also improves convergence, and makes model more trainable, or so it seems at the very least.
Additionally, this alleviates some of the issues of Noob11 base, like overly bright images.
Some more graphs for more technical people:
- Downloads last month
- 193


