-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
62 lines (62 loc) · 2.25 KB
/
index.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
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reports Index</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
text-align: center;
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
padding: 10px;
background-color: #e9e9e9;
transition: background-color 0.3s;
}
li:hover {
background-color: #ddd;
}
a {
text-decoration: none;
color: #333;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>Reports</h1>
<ul>
<li><a href="Reports/benchmark_report_NousResearch-Nous-Capybara-7B_ShareGPT_September_25_2023.html">Nous-Capybara-7B ShareGPT</a></li>
<li><a href="Reports/benchmark_report_NousResearch-Nous-Hermes-llama-2-7b_Alpaca_September_25_2023.html">Nous-Hermes-llama-2-7b Alpaca</a></li>
<li><a href="Reports/benchmark_report_NousResearch-Redmond-Puffin-13B_ShareGPT_September_25_2023.html">Redmond-Puffin-13B ShareGPT</a></li>
<li><a href="Reports/benchmark_report_teknium-OpenHermes-13B_Alpaca_September_25_2023.html">teknium-OpenHermes-13B Alpaca</a></li>
<li><a href="Reports/benchmark_report_teknium-OpenHermes-7B_Alpaca_September_25_2023.html">teknium-OpenHermes-7B Alpaca</a></li>
<li><a href="Reports/benchmark_report_PygmalionAI-mythalion-13b_Alpaca_September_25_2023.html">PygmalionAI-mythalion-13b Alpaca</a></li>
<li><a href="Reports/benchmark_report_NousResearch-Nous-Hermes-Llama2-13b_Alpaca_September_25_2023.html">Nous-Hermes-llama-2-13B Alpaca</li>
</ul>
</div>
<script>
// Any additional JS can be added here
</script>
</body>
</html>