modifications
Browse files
StableDiffusionModels/CompVis/stable-diffusion-v1-4/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File Structure
|
| 2 |
+
|
| 3 |
+
```
|
| 4 |
+
- model_index.json
|
| 5 |
+
- feature_extractor/
|
| 6 |
+
- preprocessor_config.json
|
| 7 |
+
- safety_checker/
|
| 8 |
+
- config.json
|
| 9 |
+
- pytorch_model.bin
|
| 10 |
+
- scheduler/
|
| 11 |
+
- scheduler_config.json
|
| 12 |
+
- text_encoder/
|
| 13 |
+
- config.json
|
| 14 |
+
- pytorch_model.bin
|
| 15 |
+
- tokenizer/
|
| 16 |
+
- merges.txt
|
| 17 |
+
- special_tokens_map.json
|
| 18 |
+
- tokenizer_config.json
|
| 19 |
+
- vocab.json
|
| 20 |
+
- unet/
|
| 21 |
+
- config.json
|
| 22 |
+
- diffusion_pytorch_model.bin
|
| 23 |
+
- vae/
|
| 24 |
+
- config.json
|
| 25 |
+
- diffusion_pytorch_model.bin
|
| 26 |
+
```
|
run_painterly_render.py
CHANGED
|
@@ -110,8 +110,8 @@ if __name__ == '__main__':
|
|
| 110 |
# changing_region_words=[["", ""], ["", "sleeves"], ["", "belt"]]),
|
| 111 |
|
| 112 |
## "reweight" examples
|
| 113 |
-
# PromptInfo(prompts=["
|
| 114 |
-
# token_ind=
|
| 115 |
# changing_region_words=[["", ""], ["moustache", "moustache"], ["smile", "smile"]],
|
| 116 |
# reweight_word=["moustache", "smile"],
|
| 117 |
# reweight_weight=[-1.0, 3.0]),
|
|
|
|
| 110 |
# changing_region_words=[["", ""], ["", "sleeves"], ["", "belt"]]),
|
| 111 |
|
| 112 |
## "reweight" examples
|
| 113 |
+
# PromptInfo(prompts=["An emoji face with moustache and smile"] * 3,
|
| 114 |
+
# token_ind=3,
|
| 115 |
# changing_region_words=[["", ""], ["moustache", "moustache"], ["smile", "smile"]],
|
| 116 |
# reweight_word=["moustache", "smile"],
|
| 117 |
# reweight_weight=[-1.0, 3.0]),
|