File size: 1,040 Bytes
8f53c75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e24c023
 
 
 
8f53c75
1ecb6a3
8f53c75
1ecb6a3
 
 
 
 
7f35d0f
1ecb6a3
bc4f83f
1ecb6a3
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
dataset_info:
  features:
  - name: Prompt
    dtype: string
  - name: Category
    dtype: string
  - name: Challenge
    dtype: string
  - name: Note
    dtype: string
  - name: images
    dtype: image
  - name: model_name
    dtype: string
  - name: seed
    dtype: int64
  splits:
  - name: train
    num_bytes: 198852412.0
    num_examples: 1632
  download_size: 198704477
  dataset_size: 198852412.0
---
# Images of Parti Prompts for "sd-v1-5"

Code that was used to get the results:

```py
from diffusers import DiffusionPipeline, DDIMScheduler
import torch
import PIL

pipe = DiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", torch_dtype=torch.float16, safety_checker=None)
pipe.to("cuda")
pipe.scheduler = DDIMScheduler.from_config(pipe.scheduler.config)

prompt = "" # a parti prompt
generator = torch.Generator("cuda").manual_seed(0)

image = pipe(prompt, generator=generator, num_inference_steps=100, guidance_scale=7.5).images[0]
image = image.resize((256, 256), resample=PIL.Image.Resampling.LANCZOS)
```