fantos commited on
Commit
ddc6cae
·
verified ·
1 Parent(s): 850a776

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -32,8 +32,15 @@ def generate_image(image, prompt, num_inference_steps=50, guidance_scale=7.5):
32
 
33
  return result
34
 
 
 
 
 
 
 
 
35
  # Gradio 인터페이스
36
- demo = gr.Interface(
37
  fn=generate_image,
38
  inputs=[
39
  gr.Image(type="pil", label="Upload an Image"),
 
32
 
33
  return result
34
 
35
+ css = """
36
+ footer {
37
+ visibility: hidden;
38
+ }
39
+ """
40
+
41
+
42
  # Gradio 인터페이스
43
+ demo = gr.Interface(theme="Nymbo/Nymbo_Theme", css=css,
44
  fn=generate_image,
45
  inputs=[
46
  gr.Image(type="pil", label="Upload an Image"),