Model Clarity-Clarity-v3-inpainting from civitai
Browse files- README.md +38 -0
- clarity_V3-inpainting.safetensors +3 -0
- preview.jpeg +0 -0
README.md
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: diffusers
|
3 |
+
license: creativeml-openrail-m
|
4 |
+
pipeline_tag: text-to-image
|
5 |
+
tags:
|
6 |
+
- Safetensors
|
7 |
+
- stable-diffusion
|
8 |
+
- stable-diffusion-diffusers
|
9 |
+
- text-to-image
|
10 |
+
---
|
11 |
+
|
12 |
+
# Clarity_Clarity v3 inpainting
|
13 |
+
|
14 |
+

|
15 |
+
|
16 |
+
### Description:
|
17 |
+
|
18 |
+
> <p><strong>Inpainting version of Clarity v3</strong></p><p>Use only for inpainting.</p>
|
19 |
+
|
20 |
+
### Civitai Page: https://civitai.com/models/145163
|
21 |
+
|
22 |
+
You can use this with the [🧨Diffusers library](https://github.com/huggingface/diffusers)
|
23 |
+
|
24 |
+
### Diffusers
|
25 |
+
```py
|
26 |
+
from diffusers import StableDiffusionPipeline
|
27 |
+
import torch
|
28 |
+
|
29 |
+
model_id = "andro-flock/Clarity-Clarity-v3-inpainting"
|
30 |
+
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
31 |
+
pipe = pipe.to("cuda")
|
32 |
+
|
33 |
+
prompt = "masterpiece, best quality, 1girl, (colorful),(delicate eyes and face), volumatic light, ray tracing, bust shot ,extremely detailed CG unity 8k wallpaper,solo,smile"
|
34 |
+
image = pipe(prompt).images[0]
|
35 |
+
|
36 |
+
image.save("result.png")
|
37 |
+
```
|
38 |
+
|
clarity_V3-inpainting.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d9be14ba270a7cad798726535e19964b9f83171bcc930364cd4b926e9878032b
|
3 |
+
size 4265204882
|
preview.jpeg
ADDED
![]() |