fffiloni commited on
Commit
99a6e91
·
1 Parent(s): 3fd66c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -85,11 +85,11 @@ with gr.Blocks(css=css) as demo:
85
  <h2 style="text-align: center;">SD-XL Custom Model Inference</h2>
86
  <p style="text-align: center;">Use this demo to check results from your previously trained LoRa model.</p>
87
  """)
88
- with gr.Row():
89
- with gr.Column():
90
  custom_model = gr.Textbox(label="Your custom model ID", placeholder="your_username/your_trained_model_name", info="Make sure your model is set to PUBLIC ")
91
  weight_name = gr.Textbox(label="Safetensors file", value="pytorch_lora_weights.safetensors", info="specify which one if model has several .safetensors files")
92
- with gr.Column():
93
  model_status = gr.Textbox(label="model status", interactive=False)
94
  load_model_btn = gr.Button("Load my model")
95
 
 
85
  <h2 style="text-align: center;">SD-XL Custom Model Inference</h2>
86
  <p style="text-align: center;">Use this demo to check results from your previously trained LoRa model.</p>
87
  """)
88
+ with gr.Column():
89
+ with gr.Row():
90
  custom_model = gr.Textbox(label="Your custom model ID", placeholder="your_username/your_trained_model_name", info="Make sure your model is set to PUBLIC ")
91
  weight_name = gr.Textbox(label="Safetensors file", value="pytorch_lora_weights.safetensors", info="specify which one if model has several .safetensors files")
92
+ with gr.Row():
93
  model_status = gr.Textbox(label="model status", interactive=False)
94
  load_model_btn = gr.Button("Load my model")
95