amadinahmed commited on
Commit
65c8fd3
·
1 Parent(s): 1de17f3
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -124,7 +124,8 @@ css = """
124
  .feedback textarea {font-size: 24px !important}
125
  """
126
 
127
- with gr.Blocks(title="Trash Classification", css=css) as demo:
 
128
 
129
  with gr.Column():
130
  with gr.Column():
@@ -141,7 +142,7 @@ with gr.Blocks(title="Trash Classification", css=css) as demo:
141
  material_probs = gr.outputs.Label(label="Material Prediction", num_top_classes=1)
142
  gr.Markdown("### Can it Recycle?")
143
  recycling_qn = gr.outputs.Label()
144
- gr.Markdown("### To Recycle this make Sure")
145
  recycling_advice = gr.outputs.Label()
146
 
147
 
 
124
  .feedback textarea {font-size: 24px !important}
125
  """
126
 
127
+ with gr.Blocks(title="Trash Classification", css=css, theme=gr.themes.Monochrome()
128
+ ) as demo:
129
 
130
  with gr.Column():
131
  with gr.Column():
 
142
  material_probs = gr.outputs.Label(label="Material Prediction", num_top_classes=1)
143
  gr.Markdown("### Can it Recycle?")
144
  recycling_qn = gr.outputs.Label()
145
+ gr.Markdown("### To Recycle this make sure")
146
  recycling_advice = gr.outputs.Label()
147
 
148