-
Notifications
You must be signed in to change notification settings - Fork 0
/
method.html
56 lines (51 loc) · 2.18 KB
/
method.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LLM-Rank</title>
<link rel="icon" href="img/caii.png" type="image/icon type">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/nav.css">
<script src="javascript/index.js" defer></script>
</head>
<body>
<div id="nav">
<div id="icon">
<a class="nav-button-1" href="index.html"
style="margin-left: 2px; font-size: 24px">CAII
</a>
</div>
<div>
<a class="nav-button" href="index.html#home">主页</a>
<a class="nav-button" href="index.html#authors">专家组成员</a>
<a class="nav-button" href="index.html#contact">联系方式</a>
<a class="nav-button" href="dataset.html">数据集</a>
<a class="nav-button" href="method.html">测试方法</a>
<a class="nav-button" href="https://github.com/winnylyc/llm-standard">Github</a>
<a class="nav-button" href="leaderboard.html">排行榜</a>
<!-- <a class="nav-button" href="leaderboard.html">排行榜</a> -->
<a class="nav-button" href="example.html">例题展示</a>
<a class="nav-button" href="visualize.html">可视化比较</a>
</div>
</div>
<!-- anchor for the home button -->
<div id="home" style="position: absolute; top: 0;"></div>
<!-- the main body of the page -->
<!-- each section uses an empty div as an anchor -->
<div id="body">
<br><br><br><br>
<div class="section">
<h1>中国AI大模型工业应用指数-准确性评价标准</h1>
<div id="example-box">
<img class="example-img" src="img/method1.png" style="width: 98%" alt="method1.png" />
</div>
<h1>中国AI大模型工业应用指数-稳定性评价标准</h1>
<div id="example-box">
<img class="example-img" src="img/method2.png" style="width: 98%" alt="method1.png" />
</div>
</div>
</div>
</body>
</html>