Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ from diffusers import DiffusionPipeline
|
|
6 |
import torch
|
7 |
|
8 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
9 |
-
model_repo_id = "
|
10 |
|
11 |
if torch.cuda.is_available():
|
12 |
torch_dtype = torch.float16
|
@@ -139,4 +139,4 @@ with gr.Blocks(css=css) as demo:
|
|
139 |
outputs = [result, seed]
|
140 |
)
|
141 |
|
142 |
-
demo.queue().launch()
|
|
|
6 |
import torch
|
7 |
|
8 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
9 |
+
model_repo_id = "Blane187/miyako-saitou-s1-ponyxl-lora-nochekaiser" #Replace to the model you would like to use
|
10 |
|
11 |
if torch.cuda.is_available():
|
12 |
torch_dtype = torch.float16
|
|
|
139 |
outputs = [result, seed]
|
140 |
)
|
141 |
|
142 |
+
demo.queue().launch(share=True)
|