anhnct commited on
Commit
8e180c9
1 Parent(s): e15e7c3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +163 -0
README.md CHANGED
@@ -1,3 +1,166 @@
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 [`StableDiffusionGLIGENTextImagePipeline`] 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
+ # Using reference image to add object in generated image
50
+ import torch
51
+ from diffusers import StableDiffusionGLIGENTextImagePipeline
52
+ from diffusers.utils import load_image
53
+
54
+ pipe = StableDiffusionGLIGENTextImagePipeline.from_pretrained("anhnct/Gligen_Inpainting_Text_Image", torch_dtype=torch.float16)
55
+ pipe = pipe.to("cuda")
56
+
57
+ input_image = load_image(
58
+ "https://hf.co/datasets/huggingface/documentation-images/resolve/main/diffusers/gligen/livingroom_modern.png"
59
+ )
60
+
61
+ prompt = "a flower"
62
+ boxes = [[[0.2676, 0.6088, 0.4773, 0.7183]]
63
+ phrases = None
64
+ gligen_image = load_image(
65
+ "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/gligen/pexels-pixabay-60597.jpg"
66
+ )
67
+
68
+ images = pipe(
69
+ prompt=prompt,
70
+ gligen_phrases=phrases,
71
+ gligen_inpaint_image=input_image,
72
+ gligen_images=[gligen_image],
73
+ gligen_boxes=boxes,
74
+ gligen_scheduled_sampling_beta=1,
75
+ output_type="pil",
76
+ num_inference_steps=50,
77
+ ).images
78
+
79
+ images[0].save("./gligen-inpainting-text-image-box.jpg")
80
+ ```
81
+
82
+ # Uses
83
+
84
+ ## Direct Use
85
+ The model is intended for research purposes only. Possible research areas and
86
+ tasks include
87
+
88
+ - Safe deployment of models which have the potential to generate harmful content.
89
+ - Probing and understanding the limitations and biases of generative models.
90
+ - Generation of artworks and use in design and other artistic processes.
91
+ - Applications in educational or creative tools.
92
+ - Research on generative models.
93
+
94
+ Excluded uses are described below.
95
+
96
+ ### Misuse, Malicious Use, and Out-of-Scope Use
97
+ _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.
98
+
99
+
100
+ 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.
101
+
102
+ #### Out-of-Scope Use
103
+ 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.
104
+
105
+ #### Misuse and Malicious Use
106
+ Using the model to generate content that is cruel to individuals is a misuse of this model. This includes, but is not limited to:
107
+
108
+ - Generating demeaning, dehumanizing, or otherwise harmful representations of people or their environments, cultures, religions, etc.
109
+ - Intentionally promoting or propagating discriminatory content or harmful stereotypes.
110
+ - Impersonating individuals without their consent.
111
+ - Sexual content without consent of the people who might see it.
112
+ - Mis- and disinformation
113
+ - Representations of egregious violence and gore
114
+ - Sharing of copyrighted or licensed material in violation of its terms of use.
115
+ - Sharing content that is an alteration of copyrighted or licensed material in violation of its terms of use.
116
+
117
+ ## Limitations and Bias
118
+
119
+ ### Limitations
120
+
121
+ - The model does not achieve perfect photorealism
122
+ - The model cannot render legible text
123
+ - 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”
124
+ - Faces and people in general may not be generated properly.
125
+ - The model was trained mainly with English captions and will not work as well in other languages.
126
+ - The autoencoding part of the model is lossy
127
+ - The model was trained on a large-scale dataset
128
+ [LAION-5B](https://laion.ai/blog/laion-5b/) which contains adult material
129
+ and is not fit for product use without additional safety mechanisms and
130
+ considerations.
131
+ - 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.
132
+ 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.
133
+
134
+ ### Bias
135
+
136
+ While the capabilities of image generation models are impressive, they can also reinforce or exacerbate social biases.
137
+ Stable Diffusion v1 was trained on subsets of [LAION-2B(en)](https://laion.ai/blog/laion-5b/),
138
+ which consists of images that are primarily limited to English descriptions.
139
+ Texts and images from communities and cultures that use other languages are likely to be insufficiently accounted for.
140
+ This affects the overall output of the model, as white and western cultures are often set as the default. Further, the
141
+ ability of the model to generate content with non-English prompts is significantly worse than with English-language prompts.
142
+
143
+ ### Safety Module
144
+
145
+ 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.
146
+ This checker works by checking model outputs against known hard-coded NSFW concepts.
147
+ The concepts are intentionally hidden to reduce the likelihood of reverse-engineering this filter.
148
+ Specifically, the checker compares the class probability of harmful concepts in the embedding space of the `CLIPTextModel` *after generation* of the images.
149
+ The concepts are passed into the model with the generated image and compared to a hand-engineered weight for each NSFW concept.
150
+
151
+
152
+ ## Training
153
+ Refer [`GLIGEN`](https://github.com/gligen/GLIGEN) for more details.
154
+
155
+ ## Citation
156
+
157
+ ```bibtex
158
+ @article{li2023gligen,
159
+ 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},
160
+ title = {GLIGEN: Open-Set Grounded Text-to-Image Generation},
161
+ publisher = {arXiv:2301.07093},
162
+ year = {2023},
163
+ }
164
+ ```
165
+
166
+ *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).*