Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,21 +3,10 @@ import gradio as gr
|
|
3 |
demo = gr.Blocks()
|
4 |
|
5 |
with demo:
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
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()
|