|
<!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> |
|
|
|
table { |
|
border-collapse: collapse; |
|
} |
|
|
|
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> |
|
|