nigeljw commited on
Commit
b72451c
·
1 Parent(s): c777bc4

Improved placeholder prompt

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -70,7 +70,7 @@ promptDesc = "This text will condition the generation of the scene to help guide
70
  negPromptDesc = "This text will help deter the generation from converging towards reconstructing the elements described in the text."
71
  outputText = "This inferred imagery expands the field of view from the masked area of the input camera feed."
72
 
73
- prompt = gradio.Textbox(label="Prompt", info=promptDesc, placeholder="A person in a room", lines=3)
74
  negativePrompt = gradio.Textbox(label="Negative Prompt", info=negPromptDesc, placeholder="Facial hair", lines=3)
75
  inputImage = gradio.Image(label="Input Feed", source="webcam", shape=[512,512], streaming=True)
76
  mask = gradio.Image(label="Mask", type="pil", value=defaultMask)
 
70
  negPromptDesc = "This text will help deter the generation from converging towards reconstructing the elements described in the text."
71
  outputText = "This inferred imagery expands the field of view from the masked area of the input camera feed."
72
 
73
+ prompt = gradio.Textbox(label="Prompt", info=promptDesc, placeholder="A person in a room with colored hair", lines=3)
74
  negativePrompt = gradio.Textbox(label="Negative Prompt", info=negPromptDesc, placeholder="Facial hair", lines=3)
75
  inputImage = gradio.Image(label="Input Feed", source="webcam", shape=[512,512], streaming=True)
76
  mask = gradio.Image(label="Mask", type="pil", value=defaultMask)