Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -89,8 +89,9 @@ with gr.Blocks(css=css) as demo:
|
|
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")
|
|
|
92 |
model_status = gr.Textbox(label="model status", interactive=False)
|
93 |
-
|
94 |
|
95 |
prompt_in = gr.Textbox(label="Prompt")
|
96 |
inf_steps = gr.Slider(
|
|
|
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")
|
92 |
+
with gr.Column():
|
93 |
model_status = gr.Textbox(label="model status", interactive=False)
|
94 |
+
load_model_btn = gr.Button("Load my model")
|
95 |
|
96 |
prompt_in = gr.Textbox(label="Prompt")
|
97 |
inf_steps = gr.Slider(
|