File size: 868 Bytes
7bc0adc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40a26aa
 
 
 
7bc0adc
1a849ce
7bc0adc
1a849ce
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
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: 161180147.0
    num_examples: 1632
  download_size: 161038543
  dataset_size: 161180147.0
---
# Images of Parti Prompts for "karlo-v1"

Code that was used to get the results:

```py
from diffusers import DiffusionPipeline
import torch

pipe = DiffusionPipeline.from_pretrained("kakaobrain/karlo-v1-alpha", torch_dtype=torch.float16)
pipe.to("cuda")

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

image = pipe(prompt, prior_num_inference_steps=50, decoder_num_inference_steps=100, generator=generator).images[0]
```