Daniel Kantor commited on
Commit
cffbf7e
·
1 Parent(s): 219b4a8

add google analytics

Browse files
Files changed (1) hide show
  1. frontend/public/index.html +66 -74
frontend/public/index.html CHANGED
@@ -1,49 +1,30 @@
1
  <!DOCTYPE html>
2
  <html lang="en">
3
- <head>
4
- <meta charset="utf-8" />
5
- <link rel="icon" href="%PUBLIC_URL%/logo32.png" />
6
- <meta
7
- name="viewport"
8
- content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"
9
- />
10
- <meta
11
- name="description"
12
- content="Interactive leaderboard tracking and comparing open-source Large Language Models across multiple benchmarks: IFEval, BBH, MATH, GPQA, MUSR, and MMLU-PRO."
13
- />
14
 
15
- <!-- Open Graph / Facebook -->
16
- <meta property="og:type" content="website" />
17
- <meta
18
- property="og:url"
19
- content="https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard"
20
- />
21
- <meta
22
- property="og:title"
23
- content="Open LLM Leaderboard - Compare Open Source Large Language Models"
24
- />
25
- <meta
26
- property="og:description"
27
- content="Interactive leaderboard for comparing LLM performance across multiple benchmarks. Features real-time filtering, community voting, and comprehensive model analysis with benchmarks like IFEval, BBH, MATH, GPQA, MUSR, and MMLU-PRO."
28
- />
29
- <meta property="og:image" content="%PUBLIC_URL%/og-image.png" />
30
 
31
- <!-- Twitter -->
32
- <meta property="twitter:card" content="summary_large_image" />
33
- <meta
34
- property="twitter:url"
35
- content="https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard"
36
- />
37
- <meta
38
- property="twitter:title"
39
- content="Open LLM Leaderboard - Compare Open Source Large Language Models"
40
- />
41
- <meta
42
- property="twitter:description"
43
- content="Interactive leaderboard for comparing LLM performance across multiple benchmarks. Features real-time filtering, community voting, and comprehensive model analysis with benchmarks like IFEval, BBH, MATH, GPQA, MUSR, and MMLU-PRO."
44
- />
45
- <meta property="twitter:image" content="%PUBLIC_URL%/og-image.png" />
46
- <!--
47
  Notice the use of %PUBLIC_URL% in the tags above.
48
  It will be replaced with the URL of the `public` folder during the build.
49
  Only files inside the `public` folder can be referenced from the HTML.
@@ -52,37 +33,47 @@
52
  work correctly both with client-side routing and a non-root public URL.
53
  Learn how to configure a non-root public URL by running `npm run build`.
54
  -->
55
- <title>
56
- Open LLM Leaderboard - Compare Open Source Large Language Models
57
- </title>
58
- <link
59
- href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap"
60
- rel="stylesheet"
61
- />
62
- <style>
63
- html,
64
- body {
65
- position: fixed;
66
- width: 100%;
67
- height: 100%;
68
- overflow: hidden;
69
- -webkit-overflow-scrolling: touch;
70
- }
71
- #root {
72
- position: absolute;
73
- top: 0;
74
- left: 0;
75
- right: 0;
76
- bottom: 0;
77
- overflow-y: auto;
78
- -webkit-overflow-scrolling: touch;
79
- }
80
- </style>
81
- </head>
82
- <body>
83
- <noscript>You need to enable JavaScript to run this app.</noscript>
84
- <div id="root"></div>
85
- <!--
 
 
 
 
 
 
 
 
 
 
86
  This HTML file is a template.
87
  If you open it directly in the browser, you will see an empty page.
88
 
@@ -92,5 +83,6 @@
92
  To begin the development, run `npm start` or `yarn start`.
93
  To create a production bundle, use `npm run build` or `yarn build`.
94
  -->
95
- </body>
 
96
  </html>
 
1
  <!DOCTYPE html>
2
  <html lang="en">
 
 
 
 
 
 
 
 
 
 
 
3
 
4
+ <head>
5
+ <meta charset="utf-8" />
6
+ <link rel="icon" href="%PUBLIC_URL%/logo32.png" />
7
+ <meta name="viewport"
8
+ content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover" />
9
+ <meta name="description"
10
+ content="Interactive leaderboard tracking and comparing open-source Large Language Models across multiple benchmarks: IFEval, BBH, MATH, GPQA, MUSR, and MMLU-PRO." />
 
 
 
 
 
 
 
 
11
 
12
+ <!-- Open Graph / Facebook -->
13
+ <meta property="og:type" content="website" />
14
+ <meta property="og:url" content="https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard" />
15
+ <meta property="og:title" content="Open LLM Leaderboard - Compare Open Source Large Language Models" />
16
+ <meta property="og:description"
17
+ content="Interactive leaderboard for comparing LLM performance across multiple benchmarks. Features real-time filtering, community voting, and comprehensive model analysis with benchmarks like IFEval, BBH, MATH, GPQA, MUSR, and MMLU-PRO." />
18
+ <meta property="og:image" content="%PUBLIC_URL%/og-image.png" />
19
+
20
+ <!-- Twitter -->
21
+ <meta property="twitter:card" content="summary_large_image" />
22
+ <meta property="twitter:url" content="https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard" />
23
+ <meta property="twitter:title" content="Open LLM Leaderboard - Compare Open Source Large Language Models" />
24
+ <meta property="twitter:description"
25
+ content="Interactive leaderboard for comparing LLM performance across multiple benchmarks. Features real-time filtering, community voting, and comprehensive model analysis with benchmarks like IFEval, BBH, MATH, GPQA, MUSR, and MMLU-PRO." />
26
+ <meta property="twitter:image" content="%PUBLIC_URL%/og-image.png" />
27
+ <!--
28
  Notice the use of %PUBLIC_URL% in the tags above.
29
  It will be replaced with the URL of the `public` folder during the build.
30
  Only files inside the `public` folder can be referenced from the HTML.
 
33
  work correctly both with client-side routing and a non-root public URL.
34
  Learn how to configure a non-root public URL by running `npm run build`.
35
  -->
36
+ <title>
37
+ Open LLM Leaderboard - Compare Open Source Large Language Models
38
+ </title>
39
+ <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap"
40
+ rel="stylesheet" />
41
+ <style>
42
+ html,
43
+ body {
44
+ position: fixed;
45
+ width: 100%;
46
+ height: 100%;
47
+ overflow: hidden;
48
+ -webkit-overflow-scrolling: touch;
49
+ }
50
+
51
+ #root {
52
+ position: absolute;
53
+ top: 0;
54
+ left: 0;
55
+ right: 0;
56
+ bottom: 0;
57
+ overflow-y: auto;
58
+ -webkit-overflow-scrolling: touch;
59
+ }
60
+ </style>
61
+
62
+ <!-- Google tag (gtag.js) -->
63
+ <script async src="https://www.googletagmanager.com/gtag/js?id=G-P5GTRES91P"></script>
64
+ <script>
65
+ window.dataLayer = window.dataLayer || [];
66
+ function gtag() {dataLayer.push(arguments);}
67
+ gtag('js', new Date());
68
+
69
+ gtag('config', 'G-P5GTRES91P');
70
+ </script>
71
+ </head>
72
+
73
+ <body>
74
+ <noscript>You need to enable JavaScript to run this app.</noscript>
75
+ <div id="root"></div>
76
+ <!--
77
  This HTML file is a template.
78
  If you open it directly in the browser, you will see an empty page.
79
 
 
83
  To begin the development, run `npm start` or `yarn start`.
84
  To create a production bundle, use `npm run build` or `yarn build`.
85
  -->
86
+ </body>
87
+
88
  </html>