Update README.md
Browse files
README.md
CHANGED
@@ -7,6 +7,29 @@ tags:
|
|
7 |
- nsfw
|
8 |
- en
|
9 |
- 7GB
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
datasets:
|
11 |
- common-canvas/commoncatalog-cc-by-sa
|
12 |
- common-canvas/commoncatalog-cc-by
|
@@ -17,53 +40,48 @@ language:
|
|
17 |
size:
|
18 |
- 7.28
|
19 |
---
|
20 |
-
# CommonCanvas-XL-NC 0.1 Mirror - trim
|
21 |
|
22 |
-
## Specifications
|
23 |
-
**Total Size:** 7.28GB
|
24 |
-
**Model Size:** 6.94GB
|
25 |
-
**Input:** CommonCatalog Text Captions
|
26 |
-
**Output:** CommonCatalog Images
|
27 |
-
**Architecture:** Stable Diffusion XL
|
28 |
-
**Credit:** CommonCanvas, StabilityAI, mosaicML, @multimodalart, @Wauplin, @lhoestq
|
29 |
-
**NSFW:** Yes
|
30 |
-
**Text:** https://arxiv.org/abs/2310.16825
|
31 |
-
**LICENSE:**
|
32 |
-
<p xmlns:cc="http://creativecommons.org/ns#" >This work is licensed under <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY-NC-SA 4.0
|
33 |
-
<img style="height:22px!important;margin-left:3px;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1" label="creative commons license logo" alt="creative commons license logo">
|
34 |
-
<img style="height:22px!important;margin-left:3px;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1" alt="terms of license logo">
|
35 |
-
<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/nc.svg?ref=chooser-v1" alt="non-commercial use logo">
|
36 |
-
<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/sa.svg?ref=chooser-v1" alt="share alike logo"></a></p>
|
37 |
-
|
38 |
-
## Details
|
39 |
-
* training data : Flickr100M dataset
|
40 |
-
* bias : internet connected Western countries
|
41 |
-
* limitations : text generation, complex composition, faces, non-English languages, VAE
|
42 |
-
* use : research, deployment, examination, art, education, creative use
|
43 |
-
* prohibited : commercial use
|
44 |
-
* suggested training : mosaicML https://github.com/mosaicml/diffusion.
|
45 |
-
|
46 |
-
*
|
47 |
-
* ## Citation
|
48 |
```
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
```
|
56 |
|
57 |
-
|
58 |
-
|
59 |
-
```py
|
60 |
-
from diffusers import StableDiffusionXLPipeline
|
61 |
-
pipe = StableDiffusionXLPipeline.from_pretrained(
|
62 |
-
"common-canvas/CommonCanvas-XL-NC",
|
63 |
-
custom_pipeline="multimodalart/sdxl_perturbed_attention_guidance", #read more at https://huggingface.co/multimodalart/sdxl_perturbed_attention_guidance
|
64 |
-
torch_dtype=torch.float16
|
65 |
-
).to(device)
|
66 |
-
|
67 |
-
prompt = "a cat sitting in a car seat"
|
68 |
-
image = pipe(prompt, num_inference_steps=25).images[0]
|
69 |
-
```
|
|
|
7 |
- nsfw
|
8 |
- en
|
9 |
- 7GB
|
10 |
+
- non-commercial
|
11 |
+
- commoncanvas
|
12 |
+
- stabilityai
|
13 |
+
- mosaicml
|
14 |
+
- multimodalart
|
15 |
+
- wauplin
|
16 |
+
- lhoestq
|
17 |
+
- western-bias
|
18 |
+
- legibility
|
19 |
+
- complexity
|
20 |
+
- faces
|
21 |
+
- language
|
22 |
+
- vae
|
23 |
+
- research
|
24 |
+
- deployment
|
25 |
+
- examination
|
26 |
+
- art
|
27 |
+
- education
|
28 |
+
- creative
|
29 |
+
- https://arxiv.org/abs/2310.16825
|
30 |
+
- flickr100m
|
31 |
+
- fp16
|
32 |
+
- pag
|
33 |
datasets:
|
34 |
- common-canvas/commoncatalog-cc-by-sa
|
35 |
- common-canvas/commoncatalog-cc-by
|
|
|
40 |
size:
|
41 |
- 7.28
|
42 |
---
|
|
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
```
|
45 |
+
license: cc-by-nc-sa-4.0
|
46 |
+
tags:
|
47 |
+
- common-canvas
|
48 |
+
- stable-diffusion
|
49 |
+
- sdxl
|
50 |
+
- nsfw
|
51 |
+
- en
|
52 |
+
- 7GB
|
53 |
+
- non-commercial
|
54 |
+
- CommonCanvas
|
55 |
+
- StabilityAI
|
56 |
+
- mosaicML
|
57 |
+
- @multimodalart
|
58 |
+
- @Wauplin
|
59 |
+
- @lhoestq
|
60 |
+
- western-bias
|
61 |
+
- legibility
|
62 |
+
- complexity
|
63 |
+
- faces
|
64 |
+
- language
|
65 |
+
- vae
|
66 |
+
- research
|
67 |
+
- deployment
|
68 |
+
- examination
|
69 |
+
- art
|
70 |
+
- education
|
71 |
+
- creative
|
72 |
+
- https://arxiv.org/abs/2310.16825
|
73 |
+
- Flickr100M
|
74 |
+
- fp16
|
75 |
+
- pag
|
76 |
+
datasets:
|
77 |
+
- common-canvas/commoncatalog-cc-by-sa
|
78 |
+
- common-canvas/commoncatalog-cc-by
|
79 |
+
- common-canvas/commoncatalog-cc-by-nc-sa
|
80 |
+
- common-canvas/commoncatalog-cc-by-nc
|
81 |
+
language:
|
82 |
+
- en
|
83 |
+
size:
|
84 |
+
- 7.28
|
85 |
```
|
86 |
|
87 |
+
<img style="height:33px!important;margin-left:3px;" src="https://mirrors.creativecommons.org/presskit/buttons/88x31/png/by-nc-sa.png" label="creative commons license logo" alt="creative commons license cc-by-nc-sa">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|