datasciencedojo commited on
Commit
f34c738
1 Parent(s): 7bedfbc
Files changed (1) hide show
  1. app.py +15 -1
app.py CHANGED
@@ -58,8 +58,22 @@ def predict_pneumonia(img):
58
  return pneumonia_prediction,pneumonia_conf_plt
59
 
60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
 
62
- with gr.Blocks() as demo:
63
  with gr.Row():
64
  with gr.Column(scale=4):
65
  with gr.Row():
 
58
  return pneumonia_prediction,pneumonia_conf_plt
59
 
60
 
61
+ css = """
62
+ footer {display:none !important}
63
+ .output-markdown{display:none !important}
64
+ footer {visibility: hidden}
65
+ .hover\:bg-orange-50:hover {
66
+ --tw-bg-opacity: 1 !important;
67
+ background-color: rgb(229,225,255) !important;
68
+ }
69
+
70
+ img.gr-sample-image:hover, video.gr-sample-video:hover {
71
+ --tw-border-opacity: 1;
72
+ border-color: rgb(37, 56, 133) !important;
73
+ }
74
+ """
75
 
76
+ with gr.Blocks(title="Pneumonia Detection | Data Science Dojo", css = css) as demo:
77
  with gr.Row():
78
  with gr.Column(scale=4):
79
  with gr.Row():