HelloSun commited on
Commit
784d1f7
·
verified ·
1 Parent(s): 16f3ee6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -34,13 +34,13 @@ pipeline.reshape(batch_size=batch_size, height=height, width=width, num_images_p
34
  pipeline.compile()
35
 
36
  #TypeError: LatentConsistencyPipelineMixin.__call__() got an unexpected keyword argument 'negative_prompt'
37
- #negative_prompt="easynegative,bad anatomy, bad hands, missing fingers, extra fingers, three hands, three legs, bad arms, missing legs, missing arms, poorly drawn face, bad face, fused face, cloned face, three crus, fused feet, fused thigh, extra crus, ugly fingers, horn, cartoon, cg, 3d, unreal, animate, amputation, disconnected limbs, nsfw, nude, censored, "
38
 
39
  def infer(prompt, num_inference_steps):
40
 
41
  image = pipeline(
42
  prompt = prompt,
43
- #negative_prompt = negative_prompt,
44
  guidance_scale = 7.0,
45
  num_inference_steps = num_inference_steps,
46
  width = width,
 
34
  pipeline.compile()
35
 
36
  #TypeError: LatentConsistencyPipelineMixin.__call__() got an unexpected keyword argument 'negative_prompt'
37
+ negative_prompt="easynegative,bad anatomy, bad hands, missing fingers, extra fingers, three hands, three legs, bad arms, missing legs, missing arms, poorly drawn face, bad face, fused face, cloned face, three crus, fused feet, fused thigh, extra crus, ugly fingers, horn, cartoon, cg, 3d, unreal, animate, amputation, disconnected limbs, nsfw, nude, censored, "
38
 
39
  def infer(prompt, num_inference_steps):
40
 
41
  image = pipeline(
42
  prompt = prompt,
43
+ negative_prompt = negative_prompt,
44
  guidance_scale = 7.0,
45
  num_inference_steps = num_inference_steps,
46
  width = width,