Text-to-Image
Diffusers
Safetensors
StableDiffusionPipeline
stable-diffusion
stable-diffusion-diffusers
Instructions to use CompVis/stable-diffusion-v1-4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use CompVis/stable-diffusion-v1-4 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", dtype=torch.bfloat16, device_map="cuda") prompt = "A high tech solarpunk utopia in the Amazon rainforest" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Commit ·
26c6da0
1
Parent(s): 0b2e68a
Update README.md
Browse files
README.md
CHANGED
|
@@ -149,6 +149,8 @@ Using the model to generate content that is cruel to individuals is a misuse of
|
|
| 149 |
[LAION-5B](https://laion.ai/blog/laion-5b/) which contains adult material
|
| 150 |
and is not fit for product use without additional safety mechanisms and
|
| 151 |
considerations.
|
|
|
|
|
|
|
| 152 |
|
| 153 |
### Bias
|
| 154 |
|
|
|
|
| 149 |
[LAION-5B](https://laion.ai/blog/laion-5b/) which contains adult material
|
| 150 |
and is not fit for product use without additional safety mechanisms and
|
| 151 |
considerations.
|
| 152 |
+
- 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.
|
| 153 |
+
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.
|
| 154 |
|
| 155 |
### Bias
|
| 156 |
|