Spaces:
Runtime error
Runtime error
update
Browse files
app.py
CHANGED
@@ -9,6 +9,7 @@ TYPES = ["markdown", "number", "number", "number", "str", "markdown"]
|
|
9 |
|
10 |
|
11 |
def get_leaderboard():
|
|
|
12 |
all_data = []
|
13 |
|
14 |
baseline_0 = {
|
@@ -31,6 +32,7 @@ def get_leaderboard():
|
|
31 |
f'<a target="_blank" href="https://huggingface.co/spaces/VideoCrafter/VideoCrafter" style="color: blue">Demo</a>'])
|
32 |
}
|
33 |
all_data += [baseline_0, baseline_1]
|
|
|
34 |
|
35 |
dataframe = pd.DataFrame.from_records(all_data)
|
36 |
dataframe = dataframe.sort_values(by=['PickScore ⬆️'], ascending=False)
|
|
|
9 |
|
10 |
|
11 |
def get_leaderboard():
|
12 |
+
from result import submission_results
|
13 |
all_data = []
|
14 |
|
15 |
baseline_0 = {
|
|
|
32 |
f'<a target="_blank" href="https://huggingface.co/spaces/VideoCrafter/VideoCrafter" style="color: blue">Demo</a>'])
|
33 |
}
|
34 |
all_data += [baseline_0, baseline_1]
|
35 |
+
all_data += submission_results
|
36 |
|
37 |
dataframe = pd.DataFrame.from_records(all_data)
|
38 |
dataframe = dataframe.sort_values(by=['PickScore ⬆️'], ascending=False)
|
result.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
submission_results = [
|
2 |
+
{
|
3 |
+
"Method": '**noah-wukong**',
|
4 |
+
"CLIPScore (Frame Consistency) ⬆️":0.92,
|
5 |
+
"CLIPScore (Text Alignment) ⬆️":26.34,
|
6 |
+
"PickScore ⬆️":20.36,
|
7 |
+
"Human Preference ⬆️":'',
|
8 |
+
"References": ''
|
9 |
+
},
|
10 |
+
]
|