Spaces:
Running
on
Zero
Running
on
Zero
increase rank max values
Browse files
app.py
CHANGED
@@ -263,9 +263,9 @@ following the algorithm proposed in [*IP-Composer: Semantic Composition of Visua
|
|
263 |
randomize_seed = gr.Checkbox(value=True, label="Randomize seed")
|
264 |
seed = gr.Number(value=0, label="Seed", precision=0)
|
265 |
with gr.Row():
|
266 |
-
rank1 = gr.Slider(minimum=1, maximum=
|
267 |
-
rank2 = gr.Slider(minimum=1, maximum=
|
268 |
-
rank3 = gr.Slider(minimum=1, maximum=
|
269 |
|
270 |
with gr.Column():
|
271 |
output_image = gr.Image(label="composed output", show_label=True)
|
|
|
263 |
randomize_seed = gr.Checkbox(value=True, label="Randomize seed")
|
264 |
seed = gr.Number(value=0, label="Seed", precision=0)
|
265 |
with gr.Row():
|
266 |
+
rank1 = gr.Slider(minimum=1, maximum=150, value=30, step=1, label="rank concept 1", info="rank of projection matrix")
|
267 |
+
rank2 = gr.Slider(minimum=1, maximum=150, value=30, step=1, label="rank concept 2")
|
268 |
+
rank3 = gr.Slider(minimum=1, maximum=150, value=30, step=1, label="rank concept 3")
|
269 |
|
270 |
with gr.Column():
|
271 |
output_image = gr.Image(label="composed output", show_label=True)
|