Spaces:
Running
Running
ycy
commited on
Commit
·
11c7447
1
Parent(s):
07af1fc
test9
Browse files- src/about.py +43 -4
src/about.py
CHANGED
@@ -13,8 +13,8 @@ class Task:
|
|
13 |
#TODO 指标
|
14 |
class Tasks(Enum):
|
15 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
16 |
-
task0 = Task("
|
17 |
-
task1 = Task("
|
18 |
|
19 |
NUM_FEWSHOT = 0 # Change with your few shot
|
20 |
# ---------------------------------------------------
|
@@ -24,10 +24,49 @@ NUM_FEWSHOT = 0 # Change with your few shot
|
|
24 |
#TODO title
|
25 |
TITLE = """<h1 align="center" id="space-title">VLM Detailed Caption Leaderborad</h1>"""
|
26 |
|
|
|
|
|
27 |
#TODO interoduction
|
28 |
INTRODUCTION_TEXT = """
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
#TODO About
|
33 |
LLM_BENCHMARKS_TEXT = f"""
|
|
|
13 |
#TODO 指标
|
14 |
class Tasks(Enum):
|
15 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
16 |
+
task0 = Task("anli_r1", "acc", "ANLI")
|
17 |
+
task1 = Task("logiqa", "acc_norm", "LogiQA")
|
18 |
|
19 |
NUM_FEWSHOT = 0 # Change with your few shot
|
20 |
# ---------------------------------------------------
|
|
|
24 |
#TODO title
|
25 |
TITLE = """<h1 align="center" id="space-title">VLM Detailed Caption Leaderborad</h1>"""
|
26 |
|
27 |
+
|
28 |
+
|
29 |
#TODO interoduction
|
30 |
INTRODUCTION_TEXT = """
|
31 |
+
<div style="display: flex; flex-wrap: wrap; gap: 10px;">
|
32 |
+
<!-- Release badge -->
|
33 |
+
<a href="https://github.com/yanchenyang123/DeepSeek-V3/releases" target="_blank">
|
34 |
+
<img src="https://img.shields.io/github/v/release/yanchenyang123/DeepSeek-V3?style=flat-square" alt="release">
|
35 |
+
</a>
|
36 |
+
<!-- Docker badge -->
|
37 |
+
<a href="https://hub.docker.com/r/your-docker-image" target="_blank">
|
38 |
+
<img src="https://img.shields.io/badge/docker-v1.3.1-blue?style=flat-square" alt="docker">
|
39 |
+
</a>
|
40 |
+
<!-- Stars badge -->
|
41 |
+
<a href="https://github.com/yanchenyang123/DeepSeek-V3/stargazers" target="_blank">
|
42 |
+
<img src="https://img.shields.io/github/stars/yanchenyang123/DeepSeek-V3?style=flat-square" alt="stars">
|
43 |
+
</a>
|
44 |
+
<!-- Issues badge -->
|
45 |
+
<a href="https://github.com/yanchenyang123/DeepSeek-V3/issues" target="_blank">
|
46 |
+
<img src="https://img.shields.io/github/issues/yanchenyang123/DeepSeek-V3?color=pink&style=flat-square" alt="issues">
|
47 |
+
</a>
|
48 |
+
<!-- Contributors badge -->
|
49 |
+
<a href="https://github.com/yanchenyang123/DeepSeek-V3/graphs/contributors" target="_blank">
|
50 |
+
<img src="https://img.shields.io/github/contributors/yanchenyang123/DeepSeek-V3?color=yellowgreen&style=flat-square" alt="contributors">
|
51 |
+
</a>
|
52 |
+
<!-- Forks badge -->
|
53 |
+
<a href="https://github.com/yanchenyang123/DeepSeek-V3/network/members" target="_blank">
|
54 |
+
<img src="https://img.shields.io/github/forks/yanchenyang123/DeepSeek-V3?color=cyan&style=flat-square" alt="forks">
|
55 |
+
</a>
|
56 |
+
<!-- License badge -->
|
57 |
+
<a href="https://github.com/yanchenyang123/DeepSeek-V3/blob/main/LICENSE" target="_blank">
|
58 |
+
<img src="https://img.shields.io/github/license/yanchenyang123/DeepSeek-V3?color=black&style=flat-square" alt="license">
|
59 |
+
</a>
|
60 |
+
<!-- WeChat badge -->
|
61 |
+
<a href="https://your-wechat-link.com" target="_blank">
|
62 |
+
<img src="https://img.shields.io/badge/WeChat-微信-green?style=flat-square" alt="WeChat">
|
63 |
+
</a>
|
64 |
+
<!-- Hugging Face Spaces badge -->
|
65 |
+
<a href="https://huggingface.co/spaces/your-space" target="_blank">
|
66 |
+
<img src="https://img.shields.io/badge/Open%20in%20Spaces-%F0%9F%A4%AF-orange?style=flat-square" alt="Open in Spaces">
|
67 |
+
</a>
|
68 |
+
</div>
|
69 |
+
"""
|
70 |
|
71 |
#TODO About
|
72 |
LLM_BENCHMARKS_TEXT = f"""
|