Spaces:
Runtime error
Runtime error
Commit
·
d005293
1
Parent(s):
d7d2241
Update app.py
Browse files
app.py
CHANGED
@@ -26,16 +26,6 @@ df['image'] = df['image_url'].apply(lambda x: '<a href= "' + str(x) + '" target=
|
|
26 |
cols = list(df.columns)
|
27 |
cols.insert(0, cols.pop(cols.index('image')))
|
28 |
df = df.reindex(columns=cols)
|
29 |
-
css = """
|
30 |
-
<style>
|
31 |
-
table.dataframe tr th:nth-child(1) {
|
32 |
-
width: 300px;
|
33 |
-
}
|
34 |
-
table.dataframe tr td:nth-child(1) {
|
35 |
-
width: 300px;
|
36 |
-
}
|
37 |
-
</style>
|
38 |
-
"""
|
39 |
LINES_NUMBER = 20
|
40 |
|
41 |
def display_df():
|
@@ -60,7 +50,6 @@ initial_dataframe = display_df()
|
|
60 |
# Gradio Blocks
|
61 |
with gr.Blocks() as demo:
|
62 |
gr.Markdown("<h1><center>VisIT-Bench Dataset Viewer</center></h1>")
|
63 |
-
gr.Markdown(css)
|
64 |
|
65 |
with gr.Row():
|
66 |
num_end = gr.Number(visible=False)
|
|
|
26 |
cols = list(df.columns)
|
27 |
cols.insert(0, cols.pop(cols.index('image')))
|
28 |
df = df.reindex(columns=cols)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
LINES_NUMBER = 20
|
30 |
|
31 |
def display_df():
|
|
|
50 |
# Gradio Blocks
|
51 |
with gr.Blocks() as demo:
|
52 |
gr.Markdown("<h1><center>VisIT-Bench Dataset Viewer</center></h1>")
|
|
|
53 |
|
54 |
with gr.Row():
|
55 |
num_end = gr.Number(visible=False)
|