ofermend commited on
Commit
672e4cc
·
1 Parent(s): d3f8463

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +11 -1
index.html CHANGED
@@ -3,8 +3,9 @@
3
  <head>
4
  <meta charset="utf-8" />
5
  <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
  <link rel="stylesheet" href="style.css" />
 
8
  </head>
9
  <body>
10
  <div class="card">
@@ -15,5 +16,14 @@
15
  <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
  </p>
17
  </div>
 
 
 
 
 
 
 
 
 
18
  </body>
19
  </html>
 
3
  <head>
4
  <meta charset="utf-8" />
5
  <meta name="viewport" content="width=device-width" />
6
+ <title>Vectara's Hallucination Evaluation Model Leaderboard</title>
7
  <link rel="stylesheet" href="style.css" />
8
+ <script src="https://cdn.jsdelivr.net/npm/showdown/dist/showdown.min.js"></script>
9
  </head>
10
  <body>
11
  <div class="card">
 
16
  <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
17
  </p>
18
  </div>
19
+ <script>
20
+ fetch('leaderboard.md')
21
+ .then(response => response.text())
22
+ .then(text => {
23
+ var converter = new showdown.Converter();
24
+ var html = converter.makeHtml(text);
25
+ document.getElementById('content').innerHTML = html;
26
+ });
27
+ </script>
28
  </body>
29
  </html>