meg HF staff commited on
Commit
d5b7747
β€’
1 Parent(s): 0e8d347

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -15
app.py CHANGED
@@ -3,21 +3,10 @@ import gradio as gr
3
  demo = gr.Blocks()
4
 
5
  with demo:
6
- #inp = gr.Textbox(placeholder="Enter text.")
7
- #scroll_btn = gr.Button("Scroll")
8
- #no_scroll_btn = gr.Button("No Scroll")
9
- big_block = gr.HTML("""
10
- <div style='height: 800px; width: 100px; background-color: pink;'></div>
11
- """)
12
- #out = gr.Textbox()
13
-
14
- #scroll_btn.click(lambda x: x,
15
- # inputs=inp,
16
- # outputs=out,
17
- # scroll_to_output=True)
18
- #no_scroll_btn.click(lambda x: x,
19
- # inputs=inp,
20
- # outputs=out)
21
 
22
  if __name__ == "__main__":
23
  demo.launch()
 
3
  demo = gr.Blocks()
4
 
5
  with demo:
6
+ gr.HTML("Bias Shades Exploration")
7
+ with gr.Row():
8
+ with gr.Accordion("πŸ“™ Gender Bias", open=False):
9
+ gr.HTML("""This is a test""")
 
 
 
 
 
 
 
 
 
 
 
10
 
11
  if __name__ == "__main__":
12
  demo.launch()