exdysa commited on
Commit
758bb64
1 Parent(s): f527c92

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +71 -40
README.md CHANGED
@@ -4,54 +4,85 @@ tags:
4
  - common-canvas
5
  - stable-diffusion
6
  - sdxl
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  datasets:
8
  - common-canvas/commoncatalog-cc-by-sa
9
  - common-canvas/commoncatalog-cc-by
 
 
10
  language:
11
  - en
 
 
12
  ---
13
- # CommonCanvas-XL-C 0.1 Mirror - trim
14
-
15
- ## Specifications
16
- **Total Size:** 7.28GB
17
- **Model Size:** 6.94GB
18
- **Input:** CommonCatalog Text Captions
19
- **Output:** CommonCatalog Images
20
- **Architecture:** Stable Diffusion XL
21
- **Credit:** CommonCanvas, StabilityAI, mosaicML, @multimodalart, @Wauplin, @lhoestq
22
- **NSFW:** Yes
23
- **Text:** https://arxiv.org/abs/2310.16825
24
- **LICENSE:**
25
- 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-SA 4.0<img style="height:33px!important;margin-left:3px;" src="https://mirrors.creativecommons.org/presskit/buttons/88x31/png/by-sa.png" label="creative commons license logo" alt="creative commons license cc-by-sa">
26
- ## Details
27
- * training data : Flickr100M dataset
28
- * bias : internet connected Western countries
29
- * limitations : text generation, complex composition, faces, non-English languages, VAE
30
- * use : research, deployment, examination, art, education, creative use
31
- * prohibited : commercial use
32
- * suggested training : mosaicML https://github.com/mosaicml/diffusion.
33
 
34
- *
35
- * ## Citation
36
  ```
37
- @article{gokaslan2023commoncanvas,
38
- title={CommonCanvas: An Open Diffusion Model Trained with Creative-Commons Images},
39
- author={Gokaslan, Aaron and Cooper, A Feder and Collins, Jasmine and Seguin, Landan and Jacobson, Austin and Patel, Mihir and Frankle, Jonathan and Stephenson, Cory and Kuleshov, Volodymyr},
40
- journal={arXiv preprint arXiv:2310.16825},
41
- year={2023}
42
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  ```
 
44
 
45
- ### Code
46
-
47
- ```py
48
- from diffusers import StableDiffusionXLPipeline
49
- pipe = StableDiffusionXLPipeline.from_pretrained(
50
- "common-canvas/CommonCanvas-XL-C",
51
- custom_pipeline="multimodalart/sdxl_perturbed_attention_guidance", #read more at https://huggingface.co/multimodalart/sdxl_perturbed_attention_guidance
52
- torch_dtype=torch.float16
53
- ).to(device)
54
 
55
- prompt = "a cat sitting in a car seat"
56
- image = pipe(prompt, num_inference_steps=25).images[0]
57
- ```
 
4
  - common-canvas
5
  - stable-diffusion
6
  - sdxl
7
+ - nsfw
8
+ - en
9
+ - 7GB
10
+ - 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
36
+ - common-canvas/commoncatalog-cc-by-nc-sa
37
+ - common-canvas/commoncatalog-cc-by-nc
38
  language:
39
  - en
40
+ size:
41
+ - 7.28
42
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
 
 
44
  ```
45
+ license: cc-by-sa-4.0
46
+ tags:
47
+ - common-canvas
48
+ - stable-diffusion
49
+ - sdxl
50
+ - nsfw
51
+ - en
52
+ - 7GB
53
+ - 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
+ <img style="height:33px!important;margin-left:3px;" src="https://mirrors.creativecommons.org/presskit/buttons/88x31/png/by-sa.png" label="creative commons license logo" alt="creative commons license cc-by-sa">
87
 
 
 
 
 
 
 
 
 
 
88