Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -65,6 +65,9 @@ def main(image_path, b_lora_trained_folder, instance_prompt):
|
|
65 |
|
66 |
return f"Done, your trained model has been stored in your models library: {your_username}/{b_lora_trained_folder}"
|
67 |
|
|
|
|
|
|
|
68 |
with gr.Blocks(css=css) as demo:
|
69 |
with gr.Column(elem_id="col-container"):
|
70 |
image = gr.Image(sources=[upload], type="filepath")
|
|
|
65 |
|
66 |
return f"Done, your trained model has been stored in your models library: {your_username}/{b_lora_trained_folder}"
|
67 |
|
68 |
+
css = """
|
69 |
+
#col-container {max-width: 780px; margin-left: auto; margin-right: auto;}
|
70 |
+
"""
|
71 |
with gr.Blocks(css=css) as demo:
|
72 |
with gr.Column(elem_id="col-container"):
|
73 |
image = gr.Image(sources=[upload], type="filepath")
|