besarismaili commited on
Commit
d9bda94
·
1 Parent(s): ebd0974
Files changed (1) hide show
  1. app.py +12 -5
app.py CHANGED
@@ -130,17 +130,24 @@ with gr.Blocks() as demo:
130
  width = gr.Slider(minimum=100, maximum=1000, value=512, label="Width")
131
  height = gr.Slider(minimum=100, maximum=1000, value=512, label="Height")
132
  sampler = gr.Dropdown(choices=['K_dpmpp_2m'], value='K_dpmpp_2m', label="Sampler")
133
- model = gr.Dropdown(choices=["stable-diffusion-xl-1024-v1-0"], value="stable-diffusion-xl-1024-v1-0", label="Model")
 
 
 
134
 
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=5, label="Max Frames")
@@ -163,10 +170,10 @@ with gr.Blocks() as demo:
163
  rotation_z = gr.Textbox(value="0:(0)", label="Rotation Z")
164
 
165
  diffusion_cadence_curve = gr.Textbox(value="0:(1)", label="Diffusion Cadence Curve")
166
- cadence_interp = gr.Dropdown(choices=['mix'], value='mix', label="Cadence Interp")
167
  cadence_spans = gr.Checkbox(value=False, label="Cadence Spans")
168
 
169
- color_coherence = gr.Dropdown(choices=['LAB'], value='LAB', label="Color Coherence")
170
  brightness_curve = gr.Textbox(value="0:(1.0)", label="Brightness Curve")
171
  contrast_curve = gr.Textbox(value="0:(1.0)", label="Contrast Curve")
172
  hue_curve = gr.Textbox(value="0:(0.0)", label="Hue Curve")
 
130
  width = gr.Slider(minimum=100, maximum=1000, value=512, label="Width")
131
  height = gr.Slider(minimum=100, maximum=1000, value=512, label="Height")
132
  sampler = gr.Dropdown(choices=['K_dpmpp_2m'], value='K_dpmpp_2m', label="Sampler")
133
+ model = gr.Dropdown(choices=[
134
+ "stable-diffusion-512-v2-1", "stable-diffusion-xl-beta-v2-2-2", "stable-diffusion-xl-1024-v0-9",
135
+ "stable-diffusion-xl-1024-v1-0", "custom"
136
+ ], value="stable-diffusion-xl-1024-v1-0", label="Model")
137
 
138
  custom_model = gr.Textbox(value="", label="Custom Model")
139
  seed = gr.Slider(minimum=-1, maximum=100, value=-1, label="Seed")
140
  cfg_scale = gr.Slider(minimum=1, maximum=10, value=7, label="Cfg Scale")
141
+ clip_guidance = gr.Dropdown(choices=["None", "Simple", "FastBlue", "FastGreen"], value="None", label="Clip Guidance")
142
  init_image = gr.Textbox(value='', label="Init Image")
143
  init_sizing = gr.Dropdown(choices=['stretch'], value='stretch', label="Init Sizing")
144
  mask_path = gr.Textbox(value="", label="Mask Path")
145
  mask_invert = gr.Checkbox(value=False, label="Mask Invert")
146
+ preset = gr.Dropdown(value="cinematic", label="Preset", choices=[
147
+ 'None', '3d-model', 'analog-film', 'anime', 'cinematic', 'comic-book', 'digital-art',
148
+ 'enhance', 'fantasy-art', 'isometric', 'line-art', 'low-poly', 'modeling-compound',
149
+ 'neon-punk', 'origami', 'photographic', 'pixel-art',
150
+ ])
151
 
152
  animation_mode = gr.Dropdown(choices=['3D warp'], value='3D warp', label="Animation Mode")
153
  max_frames = gr.Slider(minimum=1, maximum=100, value=5, label="Max Frames")
 
170
  rotation_z = gr.Textbox(value="0:(0)", label="Rotation Z")
171
 
172
  diffusion_cadence_curve = gr.Textbox(value="0:(1)", label="Diffusion Cadence Curve")
173
+ cadence_interp = gr.Dropdown(choices=['film', 'mix', 'rife', 'vae-lerp', 'vae-slerp'], value='mix', label="Cadence Interp")
174
  cadence_spans = gr.Checkbox(value=False, label="Cadence Spans")
175
 
176
+ color_coherence = gr.Dropdown(choices=['None', 'HSV', 'LAB', 'RGB'], value='LAB', label="Color Coherence")
177
  brightness_curve = gr.Textbox(value="0:(1.0)", label="Brightness Curve")
178
  contrast_curve = gr.Textbox(value="0:(1.0)", label="Contrast Curve")
179
  hue_curve = gr.Textbox(value="0:(0.0)", label="Hue Curve")