File tree 4 files changed +17
-7
lines changed
4 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 21
21
"量化级别" : " 8bit 4bit" ,
22
22
"性能指标" : " https://ai.meta.com/resources/models-and-libraries/llama/见官网界面(报告模型的性能指标,如准确率、召回率、F1 分数、推理速度等)" ,
23
23
"使用示例" : " 参考xx" ,
24
- "其他说明" : " 包括任何其他与模型相关的重要信息或注意事项"
24
+ "其他说明" : " 包括任何其他与模型相关的重要信息或注意事项" ,
25
+ "indicator" : " https://scontent-hkt1-2.xx.fbcdn.net/v/t39.8562-6/361265668_276217774995411_4529778090866658620_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=f537c7&_nc_ohc=KJsVZS2lS04AX9FzARW&_nc_ht=scontent-hkt1-2.xx&oh=00_AfC1wfiBz7Tg9C-glQApsIBIHzzq4PzoItbaj3iTGUjPQQ&oe=656C6866"
25
26
},
26
27
{
27
28
"模型名称" : " baichuan-inc/Baichuan2-13B-Chat" ,
45
46
"量化级别" : " 8bit、4bit" ,
46
47
"性能指标" : " https://huggingface.co/baichuan-inc/Baichuan2-13B-Chat见huggingface界面(报告模型的性能指标,如准确率、召回率、F1 分数、推理速度等)" ,
47
48
"使用示例" : " 参考https://huggingface.co/baichuan-inc/Baichuan-13B-Chat" ,
48
- "其他说明" : " 包括任何其他与模型相关的重要信息或注意事项"
49
+ "其他说明" : " 包括任何其他与模型相关的重要信息或注意事项" ,
50
+ "indicator" : " ./public/bai.png"
49
51
},
50
52
{
51
53
"模型名称" : " THUDM/chatglm3-6b" ,
Original file line number Diff line number Diff line change @@ -213,9 +213,9 @@ const submit = async (formEl: FormInstance | undefined) => {
213
213
}
214
214
const openNew = () => {
215
215
if (typeFitler .value === " md" ) {
216
- window .open (" http://159.138.5.80:5609/Compass/openEuler-XiaoZhi-Eval" )
216
+ window .open (" http://159.138.5.80:5609/Compass/openEuler-XiaoZhi-Eval/src/branch/main/README.md " )
217
217
} else {
218
- window .open (" http://159.138.5.80:5609/Compass/openEuler-XiaoZhi-Eval" )
218
+ window .open (" http://159.138.5.80:5609/Compass/openEuler-XiaoZhi-Eval/src/branch/main/data/json " )
219
219
}
220
220
}
221
221
onMounted (() => {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const route = useRoute()
15
15
const router = useRouter ()
16
16
17
17
const activeName = ref (" first" )
18
- const input = ref (" " )
18
+ const activeType = ref (" first " )
19
19
console .log (route .query .name )
20
20
const model = route .query ?.name || " Meta/Llama2-13B-chat"
21
21
const modelInfo = modelList .find ((item ) => item [" 模型名称" ] === model )
@@ -148,8 +148,16 @@ console.log(modelInfo)
148
148
149
149
<div class =" mt-28" >
150
150
<div class =" text-2xl font-bold mb-2" >评测结果</div >
151
- <div class =" mb-8" >下表为模型在验证集上评测的平均得分以及各个子能力维度的得分</div >
152
- <DataSetTable />
151
+ <el-tabs v-model =" activeType" class =" demo-tabs" >
152
+ <el-tab-pane label =" 社区评测" name =" first" >
153
+ <div class =" mb-8" >下表为模型在验证集上评测的平均得分以及各个子能力维度的得分</div >
154
+ <DataSetTable />
155
+ </el-tab-pane >
156
+ <el-tab-pane label =" 官方指标" name =" second" >
157
+ <img v-if =" modelInfo?.['indicator']" :src =" modelInfo?.['indicator']" />
158
+ <div v-else >{{ modelInfo?.["性能指标"] }}</div >
159
+ </el-tab-pane >
160
+ </el-tabs >
153
161
</div >
154
162
155
163
<div class =" mt-40 w-full flex" >
You can’t perform that action at this time.
0 commit comments