Update README.md
Browse files
README.md
CHANGED
@@ -67,8 +67,8 @@ pipe = StableDiffusionXLPipeline.from_pretrained("segmind/Segmind-Vega", torch_d
|
|
67 |
pipe.to("cuda")
|
68 |
# if using torch < 2.0
|
69 |
# pipe.enable_xformers_memory_efficient_attention()
|
70 |
-
prompt = "
|
71 |
-
neg_prompt = "
|
72 |
image = pipe(prompt=prompt, negative_prompt=neg_prompt).images[0]
|
73 |
```
|
74 |
|
|
|
67 |
pipe.to("cuda")
|
68 |
# if using torch < 2.0
|
69 |
# pipe.enable_xformers_memory_efficient_attention()
|
70 |
+
prompt = "A cute cat eating a slice of pizza, stunning color scheme, masterpiece, illustration" # Your prompt here
|
71 |
+
neg_prompt = "(worst quality, low quality, illustration, 3d, 2d, painting, cartoons, sketch)" # Negative prompt here
|
72 |
image = pipe(prompt=prompt, negative_prompt=neg_prompt).images[0]
|
73 |
```
|
74 |
|