besarismaili commited on
Commit
b8bc11b
·
1 Parent(s): ce121c6
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -135,12 +135,12 @@ with gr.Blocks() as demo:
135
  custom_model = gr.Textbox(value="", label="Custom Model")
136
  seed = gr.Slider(minimum=-1, maximum=100, value=-1, label="Seed")
137
  cfg_scale = gr.Slider(minimum=1, maximum=10, value=7, label="Cfg Scale")
138
- clip_guidance = gr.Dropdown(choices=["Simple"], label="Clip Guidance")
139
  init_image = gr.Textbox(value='', label="Init Image")
140
  init_sizing = gr.Dropdown(choices=['stretch'], value='stretch', label="Init Sizing")
141
  mask_path = gr.Textbox(value="", label="Mask Path")
142
  mask_invert = gr.Checkbox(value=False, label="Mask Invert")
143
- preset = gr.Textbox(value=None, label="Preset")
144
 
145
  animation_mode = gr.Dropdown(choices=['3D warp'], value='3D warp', label="Animation Mode")
146
  max_frames = gr.Slider(minimum=1, maximum=100, value=72, label="Max Frames")
 
135
  custom_model = gr.Textbox(value="", label="Custom Model")
136
  seed = gr.Slider(minimum=-1, maximum=100, value=-1, label="Seed")
137
  cfg_scale = gr.Slider(minimum=1, maximum=10, value=7, label="Cfg Scale")
138
+ clip_guidance = gr.Dropdown(choices=["Simple"], value="Simple", label="Clip Guidance")
139
  init_image = gr.Textbox(value='', label="Init Image")
140
  init_sizing = gr.Dropdown(choices=['stretch'], value='stretch', label="Init Sizing")
141
  mask_path = gr.Textbox(value="", label="Mask Path")
142
  mask_invert = gr.Checkbox(value=False, label="Mask Invert")
143
+ preset = gr.Dropdown(value="cinematic", label="Preset", choices=["None", "3d-model", "analog-film", "anime", "cinematic"])
144
 
145
  animation_mode = gr.Dropdown(choices=['3D warp'], value='3D warp', label="Animation Mode")
146
  max_frames = gr.Slider(minimum=1, maximum=100, value=72, label="Max Frames")