not-lain commited on
Commit
7c4570d
Β·
1 Parent(s): a34fcb2

fixed typoo

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,7 +41,7 @@ pipeline = StableDiffusionPipeline.from_single_file(
41
  ).to("cuda")
42
 
43
  postive_prompt = "anime girl prompt here" # πŸ‘ˆ change this
44
- negative_prompt = "3D" πŸ‘ˆ things you hate here
45
  image = pipeline(postive_prompt,negative_prompt=negative_prompt).images[0]
46
 
47
  image # your image is saved in this PIL variable
 
41
  ).to("cuda")
42
 
43
  postive_prompt = "anime girl prompt here" # πŸ‘ˆ change this
44
+ negative_prompt = "3D" # πŸ‘ˆ things you hate here
45
  image = pipeline(postive_prompt,negative_prompt=negative_prompt).images[0]
46
 
47
  image # your image is saved in this PIL variable