css change
Browse files
app.py
CHANGED
@@ -65,11 +65,11 @@ demo = gr.Interface(
|
|
65 |
examples=[
|
66 |
["examples/img1.jpeg", "Find a person.", True, 0.25],
|
67 |
],
|
68 |
-
allow_flagging = "never",
|
69 |
cache_examples=False,
|
|
|
70 |
css = """
|
71 |
body {background-color : grey}
|
72 |
""",
|
73 |
)
|
74 |
-
demo.launch(
|
75 |
|
|
|
65 |
examples=[
|
66 |
["examples/img1.jpeg", "Find a person.", True, 0.25],
|
67 |
],
|
|
|
68 |
cache_examples=False,
|
69 |
+
allow_flagging = "never",
|
70 |
css = """
|
71 |
body {background-color : grey}
|
72 |
""",
|
73 |
)
|
74 |
+
demo.launch()
|
75 |
|