fantos commited on
Commit
de7fb8a
1 Parent(s): 7b9b23e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -9
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
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
39
- gr.Markdown(
40
- """
41
- <div style="text-align: center; max-width: 650px; margin: 0 auto;">
42
- <h1 style="font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; display: contents;">Hyper-FLUX-8steps-LoRA</h1>
43
- <p style="font-size: 1rem; margin-bottom: 1.5rem;">AutoML team from ByteDance</p>
44
- </div>
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):