Koolchh commited on
Commit
a076d34
1 Parent(s): b172224

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -12
README.md CHANGED
@@ -20,23 +20,19 @@ tags:
20
  - **Prompt**: Use tag-based prompts to describe your subject.
21
  - Tag ordering matters. It is highly recommended to structure your prompt with the following templates:
22
  ```
23
- 1boy, male focus, character name, series name, anything else you'd like to describe, best aesthetic, amazing aesthetic, great aesthetic, normal aesthetic, best quality, amazing quality, great quality, normal quality, absurdres
24
  ```
25
  ```
26
- 2boys, male focus, multiple boys, character name(s), series name, anything else you'd like to describe, best aesthetic, amazing aesthetic, great aesthetic, normal aesthetic, best quality, amazing quality, great quality, normal quality, absurdres
27
- ```
28
- - You don't need to use all the quality tags and aesthetic tags at once, but I found the results are better when all these tags are put into the prompt:
29
- ```
30
- , best aesthetic, amazing aesthetic, great aesthetic, normal aesthetic, best quality, amazing quality, great quality, normal quality
31
  ```
32
  - **Negative prompt**: Choose from one of the following two presets.
33
- 1. Light (*recommended*):
34
  ```
35
- lowres, jpeg artifacts, worst quality, watermark, blurry, bad aesthetic
36
  ```
37
- 2. Heavy:
38
  ```
39
- lowres, bad, text, error, missing, extra, fewer, cropped, jpeg artifacts, worst quality, bad quality, watermark, bad aesthetic, unfinished, chromatic aberration, scan, scan artifacts
40
  ```
41
  - **VAE**: Make sure you're using [SDXL VAE](https://huggingface.co/stabilityai/sdxl-vae/tree/main).
42
  - **Sampling method, sampling steps and CFG scale**: I find **(Euler a, 28, 8.5)** good. You are encouraged to experiment with other settings.
@@ -51,8 +47,8 @@ from diffusers import DiffusionPipeline
51
  pipe = DiffusionPipeline.from_pretrained("Koolchh/AnimeBoysXL-v3.0", torch_dtype=torch.float16, use_safetensors=True, variant="fp16")
52
  pipe.to("cuda")
53
 
54
- prompt = "1boy, male focus, shirt, solo, looking at viewer, smile, black hair, brown eyes, short hair, best aesthetic, amazing aesthetic, great aesthetic, normal aesthetic, best quality, amazing quality, great quality, normal quality, absurdres"
55
- negative_prompt = "lowres, jpeg artifacts, worst quality, watermark, blurry, bad aesthetic"
56
 
57
  image = pipe(
58
  prompt=prompt,
 
20
  - **Prompt**: Use tag-based prompts to describe your subject.
21
  - Tag ordering matters. It is highly recommended to structure your prompt with the following templates:
22
  ```
23
+ 1boy, male focus, character name, series name, anything else you'd like to describe, best quality, amazing quality, best aesthetic, absurdres
24
  ```
25
  ```
26
+ 2boys, male focus, multiple boys, character name(s), series name, anything else you'd like to describe, best quality, amazing quality, best aesthetic, absurdres
 
 
 
 
27
  ```
28
  - **Negative prompt**: Choose from one of the following two presets.
29
+ 1. Heavy (*recommended*):
30
  ```
31
+ lowres, bad, text, error, missing, extra, fewer, cropped, jpeg artifacts, worst quality, bad quality, watermark, bad aesthetic, unfinished, chromatic aberration, scan, scan artifacts
32
  ```
33
+ 2. Light:
34
  ```
35
+ lowres, jpeg artifacts, worst quality, watermark, blurry, bad aesthetic
36
  ```
37
  - **VAE**: Make sure you're using [SDXL VAE](https://huggingface.co/stabilityai/sdxl-vae/tree/main).
38
  - **Sampling method, sampling steps and CFG scale**: I find **(Euler a, 28, 8.5)** good. You are encouraged to experiment with other settings.
 
47
  pipe = DiffusionPipeline.from_pretrained("Koolchh/AnimeBoysXL-v3.0", torch_dtype=torch.float16, use_safetensors=True, variant="fp16")
48
  pipe.to("cuda")
49
 
50
+ prompt = "1boy, male focus, shirt, solo, looking at viewer, smile, black hair, brown eyes, short hair, best quality, amazing quality, best aesthetic, absurdres"
51
+ negative_prompt = "lowres, bad, text, error, missing, extra, fewer, cropped, jpeg artifacts, worst quality, bad quality, watermark, bad aesthetic, unfinished, chromatic aberration, scan, scan artifacts"
52
 
53
  image = pipe(
54
  prompt=prompt,