File size: 1,401 Bytes
f89a6e4 672e4cc f89a6e4 1331b4e 153b0ae 1331b4e f89a6e4 7b968b0 4e86e77 7b968b0 62e842a 672e4cc 1d3ee48 672e4cc 02dfc0a 672e4cc f89a6e4 |
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 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Vectara's Hallucination Evaluation Model Leaderboard</title>
<link rel="stylesheet" href="style.css" />
<style>
/* Style the table */
table {
border-collapse: collapse;
}
/* Style the table cells */
th, td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/showdown/dist/showdown.min.js"></script>
</head>
<body>
<div>
<p>This leaderboard will soon be deprecated. Please check our new dynamic leaderboard
<a href="https://huggingface.co/spaces/vectara/leaderboard" target="_blank">here</a>.
</p>
</div>
<div id="content"></div>
<script>
fetch('https://raw.githubusercontent.com/vectara/hallucination-leaderboard/main/README.md')
.then(response => response.text())
.then(text => {
var converter = new showdown.Converter({tables: true});
var html = converter.makeHtml(text);
document.getElementById('content').innerHTML = html;
});
</script>
</body>
</html>
|