Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -35,15 +35,14 @@ pipe.load_lora_weights(hf_hub_download("ByteDance/Hyper-SD", "Hyper-FLUX.1-dev-8
|
|
35 |
pipe.fuse_lora(lora_scale=0.125)
|
36 |
pipe.to(device="cuda", dtype=torch.bfloat16)
|
37 |
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
)
|
47 |
|
48 |
with gr.Row():
|
49 |
with gr.Column(scale=3):
|
|
|
35 |
pipe.fuse_lora(lora_scale=0.125)
|
36 |
pipe.to(device="cuda", dtype=torch.bfloat16)
|
37 |
|
38 |
+
css = """
|
39 |
+
footer {
|
40 |
+
visibility: hidden;
|
41 |
+
}
|
42 |
+
"""
|
43 |
+
|
44 |
+
|
45 |
+
with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
|
|
|
46 |
|
47 |
with gr.Row():
|
48 |
with gr.Column(scale=3):
|