Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -44,7 +44,7 @@ TEST_SETS = [
|
|
44 |
style = """
|
45 |
<style>
|
46 |
th, td {
|
47 |
-
font-size:
|
48 |
font-family: Arial, sans-serif;
|
49 |
text-transform: capitalize;
|
50 |
text-align: center; /* Center-align text for headers and cells */
|
@@ -55,6 +55,9 @@ style = """
|
|
55 |
margin-right: auto;
|
56 |
text-align: center;
|
57 |
}
|
|
|
|
|
|
|
58 |
</style>
|
59 |
"""
|
60 |
|
@@ -95,13 +98,16 @@ table = table.round(4)
|
|
95 |
st.markdown("# VBench ")
|
96 |
|
97 |
|
98 |
-
st.markdown(
|
99 |
-
|
100 |
-
|
101 |
-
> **VBench: Comprehensive Benchmark Suite for Video Generative Models**
|
102 |
-
> [[Paper](https://vchitect.github.io/VBench-project/assets/vbench/VBench_paper.pdf)] | [[Project Page](https://vchitect.github.io/VBench-project/)] | [[GitHub Code](https://github.com/Vchitect/VBench)] | [[Video](https://www.youtube.com/watch?v=7IhCC8Qqn8Y)]
|
103 |
-
|
104 |
-
)
|
|
|
|
|
|
|
105 |
|
106 |
default_index = list(table.columns[1:-1]).index("overall consistency") if "overall consistency" in table.columns else 0
|
107 |
sort_option = st.selectbox(
|
|
|
44 |
style = """
|
45 |
<style>
|
46 |
th, td {
|
47 |
+
font-size: 14px;
|
48 |
font-family: Arial, sans-serif;
|
49 |
text-transform: capitalize;
|
50 |
text-align: center; /* Center-align text for headers and cells */
|
|
|
55 |
margin-right: auto;
|
56 |
text-align: center;
|
57 |
}
|
58 |
+
.dataframe th, .dataframe td {
|
59 |
+
text-align: center !important;
|
60 |
+
}
|
61 |
</style>
|
62 |
"""
|
63 |
|
|
|
98 |
st.markdown("# VBench ")
|
99 |
|
100 |
|
101 |
+
# st.markdown(
|
102 |
+
# f"""
|
103 |
+
# This is the leaderboard of VBench.
|
104 |
+
# > **VBench: Comprehensive Benchmark Suite for Video Generative Models**
|
105 |
+
# > [[Paper](https://vchitect.github.io/VBench-project/assets/vbench/VBench_paper.pdf)] | [[Project Page](https://vchitect.github.io/VBench-project/)] | [[GitHub Code](https://github.com/Vchitect/VBench)] | [[Video](https://www.youtube.com/watch?v=7IhCC8Qqn8Y)]
|
106 |
+
# """
|
107 |
+
# )
|
108 |
+
st.markdown("This is the leaderboard of VBench.")
|
109 |
+
st.markdown("> **VBench: Comprehensive Benchmark Suite for Video Generative Models**")
|
110 |
+
st.markdown("> [[Paper](https://vchitect.github.io/VBench-project/assets/vbench/VBench_paper.pdf)] | [[Project Page](https://vchitect.github.io/VBench-project/)] | [[GitHub Code](https://github.com/Vchitect/VBench)] | [[Video](https://www.youtube.com/watch?v=7IhCC8Qqn8Y)]")
|
111 |
|
112 |
default_index = list(table.columns[1:-1]).index("overall consistency") if "overall consistency" in table.columns else 0
|
113 |
sort_option = st.selectbox(
|