ofermend's picture
Update index.html
4e86e77 verified
raw
history blame contribute delete
No virus
1.4 kB
<!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>