Moji AI
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -10,6 +10,49 @@ tags:
|
|
10 |
- diffusers
|
11 |
- safetensors
|
12 |
- stable-diffusion
|
13 |
-
- anime
|
|
|
14 |
base_model: runwayml/stable-diffusion-v1-5
|
15 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
- diffusers
|
11 |
- safetensors
|
12 |
- stable-diffusion
|
13 |
+
- anime
|
14 |
+
- style
|
15 |
base_model: runwayml/stable-diffusion-v1-5
|
16 |
+
---
|
17 |
+
|
18 |
+
# Nabla Theta A5 - Lines and colors enhanced A5
|
19 |
+
|
20 |
+
## Note:
|
21 |
+
- Original Author: [AD_KOISHI](https://civitai.com/user/AD_KOISHI)
|
22 |
+
- Main Checkpoint: https://civitai.com/models/260571/nabla-theta-a5-lines-and-colors-enhanced-a5-a5
|
23 |
+
|
24 |
+
## Model Introduction
|
25 |
+
- **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.
|
26 |
+
- **Some examples**:
|
27 |
+
|
28 |
+
## Usage
|
29 |
+
Like I mentioned above, you can use this model in [**`Diffusers`**](https://huggingface.co/docs/diffusers/en/index) library easily
|
30 |
+
|
31 |
+
Make sure you have installed Diffusers and necessary libraries
|
32 |
+
```shell
|
33 |
+
pip install --upgrade diffusers accelerate transformers
|
34 |
+
```
|
35 |
+
Quick example:
|
36 |
+
```python
|
37 |
+
import torch
|
38 |
+
from diffusers import StableDiffusionPipeline, EulerAncestralDiscreteScheduler
|
39 |
+
|
40 |
+
pipe = StableDiffusionPipeline.from_pretrained("moji-ai/NablaThetaA5-v1.0", torch_dtype=torch.float16).to("cuda")
|
41 |
+
pipe.scheduler = EulerDiscreteScheduler.from_config(pipeline.scheduler.config)
|
42 |
+
|
43 |
+
prompt = "some cool prompt here"
|
44 |
+
image = pipe(prompt).images[0]
|
45 |
+
```
|
46 |
+
|
47 |
+
**Recommended settings**:
|
48 |
+
- `CFG`: 5.5~7
|
49 |
+
- `Sampler`: Euler a
|
50 |
+
- `Steps`: 28~35
|
51 |
+
- `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
|
52 |
+
|
53 |
+
> 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.
|
54 |
+
|
55 |
+
## From Author:
|
56 |
+
- The author strongly dislikes many homogenized styles nowadays, so the author trained and shared this model.
|
57 |
+
|
58 |
+
***Feel free to opediscdiscussion***
|