Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,32 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
<div align="center">
|
5 |
+
|
6 |
+
# Re-implementation of ControlNet with Shape Masks
|
7 |
+
|
8 |
+
|
9 |
+
[[`GitHub`]](https://github.com/AlonzoLeeeooo/shape-guided-controlnet) / [[`Dataset`]]()
|
10 |
+
</div>
|
11 |
+
|
12 |
+
A re-implementation of ControlNet with shape masks.
|
13 |
+
|
14 |
+
# Model Weights Structure
|
15 |
+
```
|
16 |
+
shape-guided-controlnet/
|
17 |
+
βββ annotators <----- Model weights of the shape mask annotator (`U2-Net`)
|
18 |
+
βββ u2net.pth
|
19 |
+
βββ shape-guided-controlnet <----- Model weights of the trained ControlNet with shape masks
|
20 |
+
βββ config.json
|
21 |
+
βββ diffusion_pytorch_model.safetensors
|
22 |
+
βββ stable-diffusion-v1.5 <----- Model weights of Stable Diffusion v1.5
|
23 |
+
βββ feature_extractor
|
24 |
+
βββ scheduler
|
25 |
+
βββ text_encoder
|
26 |
+
βββ tokenizer
|
27 |
+
βββ unet
|
28 |
+
βββ vae
|
29 |
+
βββ model_index.json
|
30 |
+
βββ v1-5-pruned.safetensors
|
31 |
+
βββ v1-inference.yaml
|
32 |
+
```
|