anhnct commited on
Commit
c1467a7
·
1 Parent(s): 0db7513

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +158 -0
README.md CHANGED
@@ -1,3 +1,161 @@
1
  ---
2
  license: creativeml-openrail-m
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: creativeml-openrail-m
3
+ pipeline_tag: text-to-image
4
+ tags:
5
+ - stable diffusion
6
+ - diffusers
7
  ---
8
+
9
+ # GLIGEN: Open-Set Grounded Text-to-Image Generation
10
+
11
+ The GLIGEN model was created by researchers and engineers from [University of Wisconsin-Madison, Columbia University, and Microsoft](https://github.com/gligen/GLIGEN).
12
+ The [`StableDiffusionGLIGENPipeline`] can generate photorealistic images conditioned on grounding inputs.
13
+
14
+ Along with text and bounding boxes, if input images are given, this pipeline can insert objects described by text at the region defined by bounding boxes.
15
+ Otherwise, it'll generate an image described by the caption/prompt and insert objects described by text at the region defined by bounding boxes. It's trained on COCO2014D and COCO2014CD datasets, and the model uses a frozen CLIP ViT-L/14 text encoder to condition itself on grounding inputs.
16
+
17
+ This weights here are intended to be used with the 🧨 Diffusers library. If you want to use one of the official checkpoints for a task, explore the [gligen](https://huggingface.co/gligen) Hub organizations!
18
+
19
+ ## Model Details
20
+ - **Developed by:** Yuheng Li, Haotian Liu, Qingyang Wu, Fangzhou Mu, Jianwei Yang, Jianfeng Gao, Chunyuan Li, Yong Jae Lee
21
+ - **Model type:** Diffusion-based Grounded Text-to-image generation model
22
+ - **Language(s):** English
23
+ - **License:** [The CreativeML OpenRAIL M license](https://huggingface.co/spaces/CompVis/stable-diffusion-license) is an [Open RAIL M license](https://www.licenses.ai/blog/2022/8/18/naming-convention-of-responsible-ai-licenses), adapted from the work that [BigScience](https://bigscience.huggingface.co/) and [the RAIL Initiative](https://www.licenses.ai/) are jointly carrying in the area of responsible AI licensing. See also [the article about the BLOOM Open RAIL license](https://bigscience.huggingface.co/blog/the-bigscience-rail-license) on which our license is based.
24
+ - **Model Description:** This is a model that can be used to generate images based on text prompts, bounding boxes and reference images. It can add new object or style in generated images without using textual inversion, dreambooth or LoRA finetunig. It is a [Latent Diffusion Model](https://arxiv.org/abs/2112.10752) that uses a fixed, pretrained text encoder ([CLIP ViT-L/14](https://arxiv.org/abs/2103.00020)) as suggested in the [Imagen paper](https://arxiv.org/abs/2205.11487).
25
+ - **Resources for more information:** [GitHub Repository](https://github.com/gligen/GLIGEN), [Paper](https://arxiv.org/pdf/2301.07093.pdf).
26
+ - **Cite as:**
27
+
28
+ @article{li2023gligen,
29
+ author = {Li, Yuheng and Liu, Haotian and Wu, Qingyang and Mu, Fangzhou and Yang, Jianwei and Gao, Jianfeng and Li, Chunyuan and Lee, Yong Jae},
30
+ title = {GLIGEN: Open-Set Grounded Text-to-Image Generation},
31
+ publisher = {arXiv:2301.07093},
32
+ year = {2023},
33
+ }
34
+
35
+
36
+ ## Examples
37
+
38
+ We recommend using [🤗's Diffusers library](https://github.com/huggingface/diffusers) to run GLIGEN.
39
+
40
+ ### PyTorch
41
+
42
+ ```bash
43
+ pip install --upgrade diffusers transformers scipy
44
+ ```
45
+
46
+ Running the pipeline with the default scheduler:
47
+
48
+ ```python
49
+ import torch
50
+ from diffusers import StableDiffusionGLIGENTextImagePipeline
51
+ from diffusers.utils import load_image
52
+
53
+ # Generate an image described by the prompt and
54
+ # insert objects described by text and image at the region defined by bounding boxes
55
+ pipe = StableDiffusionGLIGENPipeline.from_pretrained("anhnct/Gligen_Text_Image", torch_dtype=torch.float16)
56
+ pipe = pipe.to("cuda")
57
+
58
+ prompt = "a flower sitting on the beach"
59
+ boxes = [[0.0, 0.09, 0.53, 0.76]]
60
+ phrases = ["flower"]
61
+ gligen_image = load_image(
62
+ "https://www.southernliving.com/thmb/6jANEFrMvwSWlRlxCDCzulxXQZY=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/2641101_Funfetti_Cake_702-2000-a2d8f835fd8f4a928fa17222e71241c3.jpg"
63
+ )
64
+
65
+ images = pipe(
66
+ prompt=prompt,
67
+ gligen_phrases=phrases,
68
+ gligen_images=[gligen_image],
69
+ gligen_boxes=boxes,
70
+ gligen_scheduled_sampling_beta=1,
71
+ output_type="pil",
72
+ num_inference_steps=50,
73
+ ).images
74
+
75
+ images[0].save("./gligen-generation-text-image-box.jpg")
76
+ ```
77
+ # Uses
78
+
79
+ ## Direct Use
80
+ The model is intended for research purposes only. Possible research areas and
81
+ tasks include
82
+
83
+ - Safe deployment of models which have the potential to generate harmful content.
84
+ - Probing and understanding the limitations and biases of generative models.
85
+ - Generation of artworks and use in design and other artistic processes.
86
+ - Applications in educational or creative tools.
87
+ - Research on generative models.
88
+
89
+ Excluded uses are described below.
90
+
91
+ ### Misuse, Malicious Use, and Out-of-Scope Use
92
+ _Note: This section is taken from the [DALLE-MINI model card](https://huggingface.co/dalle-mini/dalle-mini), but applies in the same way to GLIGEN.
93
+
94
+
95
+ The model should not be used to intentionally create or disseminate images that create hostile or alienating environments for people. This includes generating images that people would foreseeably find disturbing, distressing, or offensive; or content that propagates historical or current stereotypes.
96
+
97
+ #### Out-of-Scope Use
98
+ The model was not trained to be factual or true representations of people or events, and therefore using the model to generate such content is out-of-scope for the abilities of this model.
99
+
100
+ #### Misuse and Malicious Use
101
+ Using the model to generate content that is cruel to individuals is a misuse of this model. This includes, but is not limited to:
102
+
103
+ - Generating demeaning, dehumanizing, or otherwise harmful representations of people or their environments, cultures, religions, etc.
104
+ - Intentionally promoting or propagating discriminatory content or harmful stereotypes.
105
+ - Impersonating individuals without their consent.
106
+ - Sexual content without consent of the people who might see it.
107
+ - Mis- and disinformation
108
+ - Representations of egregious violence and gore
109
+ - Sharing of copyrighted or licensed material in violation of its terms of use.
110
+ - Sharing content that is an alteration of copyrighted or licensed material in violation of its terms of use.
111
+
112
+ ## Limitations and Bias
113
+
114
+ ### Limitations
115
+
116
+ - The model does not achieve perfect photorealism
117
+ - The model cannot render legible text
118
+ - The model does not perform well on more difficult tasks which involve compositionality, such as rendering an image corresponding to “A red cube on top of a blue sphere”
119
+ - Faces and people in general may not be generated properly.
120
+ - The model was trained mainly with English captions and will not work as well in other languages.
121
+ - The autoencoding part of the model is lossy
122
+ - The model was trained on a large-scale dataset
123
+ [LAION-5B](https://laion.ai/blog/laion-5b/) which contains adult material
124
+ and is not fit for product use without additional safety mechanisms and
125
+ considerations.
126
+ - No additional measures were used to deduplicate the dataset. As a result, we observe some degree of memorization for images that are duplicated in the training data.
127
+ The training data can be searched at [https://rom1504.github.io/clip-retrieval/](https://rom1504.github.io/clip-retrieval/) to possibly assist in the detection of memorized images.
128
+
129
+ ### Bias
130
+
131
+ While the capabilities of image generation models are impressive, they can also reinforce or exacerbate social biases.
132
+ Stable Diffusion v1 was trained on subsets of [LAION-2B(en)](https://laion.ai/blog/laion-5b/),
133
+ which consists of images that are primarily limited to English descriptions.
134
+ Texts and images from communities and cultures that use other languages are likely to be insufficiently accounted for.
135
+ This affects the overall output of the model, as white and western cultures are often set as the default. Further, the
136
+ ability of the model to generate content with non-English prompts is significantly worse than with English-language prompts.
137
+
138
+ ### Safety Module
139
+
140
+ The intended use of this model is with the [Safety Checker](https://github.com/huggingface/diffusers/blob/main/src/diffusers/pipelines/stable_diffusion/safety_checker.py) in Diffusers.
141
+ This checker works by checking model outputs against known hard-coded NSFW concepts.
142
+ The concepts are intentionally hidden to reduce the likelihood of reverse-engineering this filter.
143
+ Specifically, the checker compares the class probability of harmful concepts in the embedding space of the `CLIPTextModel` *after generation* of the images.
144
+ The concepts are passed into the model with the generated image and compared to a hand-engineered weight for each NSFW concept.
145
+
146
+
147
+ ## Training
148
+ Refer [`GLIGEN`](https://github.com/gligen/GLIGEN) for more details.
149
+
150
+ ## Citation
151
+
152
+ ```bibtex
153
+ @article{li2023gligen,
154
+ author = {Li, Yuheng and Liu, Haotian and Wu, Qingyang and Mu, Fangzhou and Yang, Jianwei and Gao, Jianfeng and Li, Chunyuan and Lee, Yong Jae},
155
+ title = {GLIGEN: Open-Set Grounded Text-to-Image Generation},
156
+ publisher = {arXiv:2301.07093},
157
+ year = {2023},
158
+ }
159
+ ```
160
+
161
+ *This model card was written by: [Nguyễn Công Tú Anh](https://github.com/tuanh123789) and is based on the [DALL-E Mini model card](https://huggingface.co/dalle-mini/dalle-mini).*