CoolFace
Modelpublic

MidnightRunner/MIDNIGHT_NAI-XL_vPredV1

sourceHugging Facecreativeml-openrail-mupdated 1y agoView on Hugging Face
5likes429downloads
Model Card

MIDNIGHTNAI-XLvPredV1

Model Type: Diffusion-based text-to-image generative model

Base Model: SDXL 1.0 & Laxhar/noobai-XL-Vpred-1.0

License: CreativeML Open RAIL++-M

Model Description

MIDNIGHTNAI-XLvPredV1 is a specialized fine-tuning of the NoobAI-XL (NAI-XL) model, designed to enhance anatomical precision, compositional coherence, and versatile style integration. This model excels in generating high-quality images with vibrant colors while minimizing overexposure.

Usage Recommendations

Sampling Methods

MIDNIGHTNAI-XLvPred is optimized specifically for Euler (normal). Use ModelSamplingDiscrete with V-prediction and ZsNR set to true. Other samplers may not provide stable results, and V-prediction models do not support other samplers.

CFG Scaling

Dynamic CFG Plugin is bypassed as a backup for potential future needs. Manually adjust CFG scaling within a range of 3-4 for the best balance. For optimal results, a preferred setting of 3.5 is recommended.

Custom Workflow

For an optimized generation process, use the **MIDNIGHT1111_Chasm 2025-02-04** ComfyUI workflow. This workflow is specifically designed to leverage the strengths of MIDNIGHT_NAI-XL_vPred, providing a streamlined and efficient image generation pipeline.

MIDNIGHT1111_Chasm

For an optimized generation process, consider using the custom workflow MIDNIGHT1111_Chasm 02-05-25. This workflow is tailored to leverage the strengths of the MIDNIGHTNAI-XLvPredV1 model, providing a streamlined and efficient image generation pipeline. MIDNIGHT1111_Chasm Workflow

Note: The above image is a preview of the `MIDNIGHT1111_Chasm` workflow.

Method I: reForge without MIDNIGHT1111_Chasm Workflow

  1. 1.Installation: If not already installed, follow the instructions in the reForge repository to set up.
  2. 2.Usage: Launch WebUI and use the model as usual.

Method II: ComfyUI with MIDNIGHT1111_Chasm Workflow

  1. 1.Installation: Follow the setup instructions in the ComfyUI repository.
  2. 2.Workflow Sample: Utilize the provided ComfyUI workflow sample for guidance.

Method III: WebUI without MIDNIGHT1111_Chasm Workflow

  1. 1.Installation: Follow the instructions in the WebUI repository to set up.
  1. 1.Navigate to the WebUI Directory: Before updating or switching branches, ensure you're inside the stable-diffusion-webui folder command: |
bash
      cd stable-diffusion-webui
  1. 1.Switch to the Development Branch (Optional, for testing new features): If you want to use the latest features from the development branch, run: command: |
bash
      git switch dev
      git pull

⚠️ Note: The dev branch may contain bugs. If stability is your priority, it's best to stay on the main branch.

  1. 1.Update WebUI (Main or Dev Branch): To pull the latest updates while on either branch, run: command: |
bash
      git pull

🔄 Restart WebUI after updating to apply changes."

  1. 1.Configuration: Ensure you're using a stable branch, as the dev branch may contain bugs.

Method IV: Diffusers without MIDNIGHT1111_Chasm Workflow

bash
import torch
from diffusers import StableDiffusionXLPipeline
from diffusers import EulerDiscreteScheduler

ckpt_path = "/path/to/model.safetensors"
pipe = StableDiffusionXLPipeline.from_single_file(
    ckpt_path,
    use_safetensors=True,
    torch_dtype=torch.float16,
)
scheduler_args = {"prediction_type": "v_prediction", "rescale_betas_zero_snr": True}
pipe.scheduler = EulerDiscreteScheduler.from_config(pipe.scheduler.config, **scheduler_args)
pipe.enable_xformers_memory_efficient_attention()
pipe = pipe.to("cuda")

prompt = """masterpiece, best quality,artist:john_kafka,artist:nixeu,artist:quasarcake, chromatic aberration, film grain, horror \(theme\), limited palette, x-shaped pupils, high contrast, color contrast, cold colors, arlecchino \(genshin impact\), black theme,  gritty, graphite \(medium\)"""
negative_prompt = "nsfw, worst quality, old, early, low quality, lowres, signature, username, logo, bad hands, mutated hands, mammal, anthro, furry, ambiguous form, feral, semi-anthro"

image = pipe(
    prompt=prompt,
    negative_prompt=negative_prompt,
    width=832,
    height=1216,
    num_inference_steps=28,
    guidance_scale=5,
    generator=torch.Generator().manual_seed(42),
).images[0]

image.save("output.png")

e621/Danbooru Artist Wildcards for A1111 & ComfyUI Enclosed in CSV & TXT Formats

To enhance the model's performance and specificity, the following trigger word lists in CSV format are included:

These lists provide recognized tags for various artists and characters, facilitating more accurate and tailored image generation.

The wildcard file in 'TXT' format is included and designed for seamless integration with AUTOMATIC1111 and ComfyUI, optimized for dynamic prompt generation using artist data from e621 and Danbooru.

  • TXT Format: Sanitized artist tags by removing URLs and converted from .csv to .txt format for improved readability across different extensions.
  • Dual Dataset Support: Supports both e621 and Danbooru datasets to enhance art style diversity.
  • Smooth Randomization: Structured with trailing commas for seamless wildcard cycling during prompt generation.

How to Use Wildcards

For A1111

  1. 1.Install: stable-diffusion-webui-wildcards
  2. 2.Place the `.txt` file in:
   /A1111/extensions/stable-diffusion-webui-wildcards
  1. 1.Use in your prompt like this:
   __e621_artist_wildcard__, very awa, masterpiece, best quality, amazing quality
   __danbooru_character_wildcard__, very awa, masterpiece, best quality, amazing quality
   __e621_artist_wildcard__, __danbooru_character_wildcard__, very awa, masterpiece, best quality, amazing quality

For ComfyUI

  1. 1.Install: ComfyUI-Impact-Pack
  2. 2.Place the `.txt` file in:
   /ComfyUI/custom_nodes/ComfyUI-Impact-Pack/wildcards

or

   /ComfyUI/custom_nodes/ComfyUI-Impact-Pack/custom_wildcards
  1. 1.Use the wildcard node to trigger dynamic randomization in your workflows.

What’s Included in Wildcards

TXT formatted file containing clean, artist-focused wildcard files ready for dynamic prompt workflows in A1111 and ComfyUI.

Acknowledgments

Special thanks to:

  • Development Team: Laxhar Lab
  • Coding Contributions: Euge
  • e621/Danbooru Wildcards ipsylon0000
  • Community Support: Various contributors

Additional Resources

License

This model is licensed under the CreativeML Open RAIL++-M License. By using this model, you agree to the terms and conditions outlined in the license.