Hev832 commited on
Commit
d327496
·
verified ·
1 Parent(s): a3288b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -7
app.py CHANGED
@@ -5,11 +5,10 @@ from diffusers import DiffusionPipeline
5
  pipeline = None
6
 
7
  # Load the pipeline and LoRA weights
8
- def load_cust(base_model, models_sec):
9
- global pipeline
10
- pipeline = DiffusionPipeline.from_pretrained(base_model)
11
- pipeline.load_lora_weights(models_sec)
12
 
 
13
  def generate_image(prompt, negative_prompt):
14
  global pipeline
15
  # Generate the image with the provided prompts
@@ -25,10 +24,9 @@ with gr.Blocks() as demo:
25
  negative_prompt = gr.Textbox(label="Negative Prompt", placeholder="Enter your negative prompt here")
26
  submit_button = gr.Button("Generate Image")
27
  with gr.Accordion('Load your custom models first'):
28
- basem = gr.Textbox(label="Your base model")
29
- secondm = gr.Textbox(label="Your LoRA model")
30
  exports = gr.Button("Load your models")
31
- exports.click(load_cust, inputs=[basem, secondm], outputs=[])
32
  output_image = gr.Image(label="Generated Image")
33
  submit_button.click(generate_image, inputs=[prompt, negative_prompt], outputs=output_image)
34
 
 
5
  pipeline = None
6
 
7
  # Load the pipeline and LoRA weights
8
+ def load_cust(modelsyu):
9
+ pipeline = DiffusionPipeline.from_pretrained(modelsyu)
 
 
10
 
11
+
12
  def generate_image(prompt, negative_prompt):
13
  global pipeline
14
  # Generate the image with the provided prompts
 
24
  negative_prompt = gr.Textbox(label="Negative Prompt", placeholder="Enter your negative prompt here")
25
  submit_button = gr.Button("Generate Image")
26
  with gr.Accordion('Load your custom models first'):
27
+ basem = gr.Textbox(label="Your Lora model")
 
28
  exports = gr.Button("Load your models")
29
+ exports.click(load_cust, inputs=[basem], outputs=[])
30
  output_image = gr.Image(label="Generated Image")
31
  submit_button.click(generate_image, inputs=[prompt, negative_prompt], outputs=output_image)
32