Spaces:
Running
on
Zero
Running
on
Zero
vinesmsuic
commited on
Commit
•
3efdac8
1
Parent(s):
944dd2b
moving about us
Browse files- app.py +2 -6
- serve/utils.py +1 -1
app.py
CHANGED
@@ -29,8 +29,6 @@ def build_combine_demo(models, elo_results_file, leaderboard_table_file):
|
|
29 |
if elo_results_file:
|
30 |
with gr.Tab("Generation Leaderboard", id=3):
|
31 |
build_leaderboard_tab(elo_results_file['t2i_generation'], leaderboard_table_file['t2i_generation'])
|
32 |
-
with gr.Tab("About Us", id=4):
|
33 |
-
build_about()
|
34 |
|
35 |
with gr.Tab("Image Edition", id=5):
|
36 |
with gr.Tabs() as tabs_ie:
|
@@ -45,8 +43,6 @@ def build_combine_demo(models, elo_results_file, leaderboard_table_file):
|
|
45 |
if elo_results_file:
|
46 |
with gr.Tab("Edition Leaderboard", id=8):
|
47 |
build_leaderboard_tab(elo_results_file['image_editing'], leaderboard_table_file['image_editing'])
|
48 |
-
with gr.Tab("About Us", id=9):
|
49 |
-
build_about()
|
50 |
|
51 |
with gr.Tab("Video Generation", id=10):
|
52 |
with gr.Tabs() as tabs_vg:
|
@@ -61,8 +57,8 @@ def build_combine_demo(models, elo_results_file, leaderboard_table_file):
|
|
61 |
if elo_results_file and 'video_generation' in elo_results_file:
|
62 |
with gr.Tab("Video Generation Leaderboard", id=13):
|
63 |
build_leaderboard_tab(elo_results_file['video_generation'], leaderboard_table_file['video_generation'])
|
64 |
-
|
65 |
-
|
66 |
|
67 |
return demo
|
68 |
|
|
|
29 |
if elo_results_file:
|
30 |
with gr.Tab("Generation Leaderboard", id=3):
|
31 |
build_leaderboard_tab(elo_results_file['t2i_generation'], leaderboard_table_file['t2i_generation'])
|
|
|
|
|
32 |
|
33 |
with gr.Tab("Image Edition", id=5):
|
34 |
with gr.Tabs() as tabs_ie:
|
|
|
43 |
if elo_results_file:
|
44 |
with gr.Tab("Edition Leaderboard", id=8):
|
45 |
build_leaderboard_tab(elo_results_file['image_editing'], leaderboard_table_file['image_editing'])
|
|
|
|
|
46 |
|
47 |
with gr.Tab("Video Generation", id=10):
|
48 |
with gr.Tabs() as tabs_vg:
|
|
|
57 |
if elo_results_file and 'video_generation' in elo_results_file:
|
58 |
with gr.Tab("Video Generation Leaderboard", id=13):
|
59 |
build_leaderboard_tab(elo_results_file['video_generation'], leaderboard_table_file['video_generation'])
|
60 |
+
with gr.Tab("About Us", id=4):
|
61 |
+
build_about()
|
62 |
|
63 |
return demo
|
64 |
|
serve/utils.py
CHANGED
@@ -22,7 +22,7 @@ def build_about():
|
|
22 |
This is a project from TIGER Lab at University of Waterloo.
|
23 |
|
24 |
## Contributors:
|
25 |
-
[Tianle Li](https://scholar.google.com/citations?user=g213g7YAAAAJ&hl=en), [Dongfu Jiang](https://jdf-prog.github.io/), [Yuansheng Ni](https://yuanshengni.github.io/).
|
26 |
|
27 |
## Contact:
|
28 |
Email: t29li@uwaterloo.ca (Tianle Li)
|
|
|
22 |
This is a project from TIGER Lab at University of Waterloo.
|
23 |
|
24 |
## Contributors:
|
25 |
+
[Tianle Li](https://scholar.google.com/citations?user=g213g7YAAAAJ&hl=en), [Dongfu Jiang](https://jdf-prog.github.io/), [Yuansheng Ni](https://yuanshengni.github.io/), [Max Ku](https://kuwingfung.github.io/).
|
26 |
|
27 |
## Contact:
|
28 |
Email: t29li@uwaterloo.ca (Tianle Li)
|