Spaces:
Running
Running
Commit
·
4c4e905
1
Parent(s):
0cabb43
Enhance SSIM and overall quality plots with dynamic y-axis scaling to emphasize differences. Add area fills for better visualization and update hover templates for improved data presentation. Introduce quality variation indicators in overall quality assessment. Refactor layout for improved user experience and add comprehensive usage guide.
Browse files
app.py
CHANGED
@@ -1421,6 +1421,7 @@ def create_app():
|
|
1421 |
with gr.Blocks(
|
1422 |
title="Frame Arena - Video Frame Comparator",
|
1423 |
# theme=gr.themes.Soft(),
|
|
|
1424 |
css="""
|
1425 |
/* Ensure plots adapt to theme */
|
1426 |
.plotly .main-svg {
|
|
|
1421 |
with gr.Blocks(
|
1422 |
title="Frame Arena - Video Frame Comparator",
|
1423 |
# theme=gr.themes.Soft(),
|
1424 |
+
fill_width=True,
|
1425 |
css="""
|
1426 |
/* Ensure plots adapt to theme */
|
1427 |
.plotly .main-svg {
|
data.json
CHANGED
@@ -2,20 +2,14 @@
|
|
2 |
"comparisons": [
|
3 |
{
|
4 |
"videos": [
|
5 |
-
"examples/
|
6 |
-
"examples/
|
7 |
]
|
8 |
},
|
9 |
{
|
10 |
"videos": [
|
11 |
-
"examples/
|
12 |
-
"examples/
|
13 |
-
]
|
14 |
-
},
|
15 |
-
{
|
16 |
-
"videos": [
|
17 |
-
"examples/dog/1.mp4",
|
18 |
-
"examples/dog/3.mp4"
|
19 |
]
|
20 |
}
|
21 |
]
|
|
|
2 |
"comparisons": [
|
3 |
{
|
4 |
"videos": [
|
5 |
+
"examples/cat_i2v_original.mp4",
|
6 |
+
"examples/cat_i2v_juiced.mp4"
|
7 |
]
|
8 |
},
|
9 |
{
|
10 |
"videos": [
|
11 |
+
"examples/venice_i2v_original.mp4",
|
12 |
+
"examples/venice_i2v_cached.mp4"
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
]
|
14 |
}
|
15 |
]
|