File size: 2,784 Bytes
bdadcab c4d6993 11038fd c4d6993 11038fd 92ebeb7 74b49e1 11038fd 74b49e1 11038fd 3d014ac 11038fd 2b86477 11038fd 2b86477 25dd24c 11038fd 74b49e1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
---
license: creativeml-openrail-m
language:
- en
library_name: diffusers
pipeline_tag: text-to-image
tags:
- text-to-image
- stable-diffusion
- diffusers
- safetensors
- stable-diffusion
- anime
- style
base_model: runwayml/stable-diffusion-v1-5
---
# Nabla Theta A5 - Lines and colors enhanced A5
## Notes:
- Original Author: [`AD_KOISHI`](https://civitai.com/user/AD_KOISHI)
- Main Checkpoint: https://civitai.com/models/260571/nabla-theta-a5-lines-and-colors-enhanced-a5-a5
- Restructured by: [`Eien Mojiki`](https://huggingface.co/moji-ai)
## Model Introduction
- **NablaThetaA5-v1.0** is an anime-style model fine-tuned from **SD-v1.5**. This is a restructured model suitable for use with the **`Diffusers`** library.
- **Some examples**:
![#](https://i.postimg.cc/d0vDrSGn/Comfy-UI-00001-2.png)
![#](https://i.postimg.cc/fTJdRFv9/Comfy-UI-00029.png)
![#](https://i.postimg.cc/Kz8zskqM/Comfy-UI-00030.png)
## Usage
1. **Using Diffusers**
Make sure you have installed Diffusers and necessary libraries
```shell
pip install --upgrade diffusers accelerate transformers
```
Quick example:
```python
import torch
from diffusers import StableDiffusionPipeline, EulerAncestralDiscreteScheduler
pipe = StableDiffusionPipeline.from_pretrained("moji-ai/NablaThetaA5-v1.0", torch_dtype=torch.float16).to("cuda")
pipe.scheduler = EulerDiscreteScheduler.from_config(pipeline.scheduler.config)
prompt = "some cool prompt here"
image = pipe(prompt).images[0]
```
2. **Use in A1111 or ComfyUI**
- [A1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui): Download the model [here](./NablaThetaA5-v1.0.safetensors) > Place the model inside the `models/Stable-diffusion` directory of your AUTOMATIC1111 Web UI instance > Refresh your model list or restart the Stable Diffusion Web UI > Select the custom model from the Stable Diffusion checkpoint input field and make awesome images!!
- [ComfyUI](https://github.com/comfyanonymous/ComfyUI): Download the model > place it inside `ComfyUI/models/checkpoints/` directory > Restart ComfyUI and make cool images!!
**Recommended settings**:
- `CFG`: 5.5~7
- `Sampler`: Euler a
- `Steps`: 28~35
- `High-res`: [RealESRGAN_x4plus_anime_6B](https://github.com/xinntao/Real-ESRGAN/blob/master/docs/anime_model.md) / 15 steps; 0.55~0.6 denoising strength
> It is recommended to use the [A5 Stabilizer](https://civitai.com/models/255938/a5-stabilizer-rlhf-d3po-a5) LORA for generating to see slightly different styles under the same random seed, and in some cases, improve the image to better match your preferences.
## From Author:
- The author strongly dislikes many homogenized styles nowadays, so the author trained and shared this model.
***This is an incomplete model card, so feel free to open a discussion to improve this model*** |