David Pomerenke commited on
Commit
7fcc452
Β·
1 Parent(s): 22283e0
Files changed (2) hide show
  1. README.md +2 -2
  2. index.html +26 -8
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Local Language Monitor
3
  emoji: πŸ‘€
4
  colorFrom: purple
5
  colorTo: pink
@@ -11,7 +11,7 @@ short_description: Evaluating LLM performance across all human languages.
11
 
12
  <!-- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference -->
13
 
14
- # Local Language Monitor 🌍
15
 
16
  Benchmarking all big AI models on all benchmarkable languages.
17
 
 
1
  ---
2
+ title: AI Language Monitor
3
  emoji: πŸ‘€
4
  colorFrom: purple
5
  colorTo: pink
 
11
 
12
  <!-- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference -->
13
 
14
+ # AI Language Monitor 🌍
15
 
16
  Benchmarking all big AI models on all benchmarkable languages.
17
 
index.html CHANGED
@@ -2,7 +2,7 @@
2
  <html>
3
 
4
  <head>
5
- <title>Local Language Monitor</title>
6
  <script src="https://cdn.tailwindcss.com"></script>
7
  <style>
8
  body {
@@ -27,7 +27,7 @@
27
  </head>
28
 
29
  <body>
30
- <nav class="border-b border-gray-200 bg-white">
31
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
32
  <!-- Mobile menu button -->
33
  <div class="sm:hidden absolute left-4 top-4">
@@ -39,22 +39,23 @@
39
  </div>
40
 
41
  <!-- Mobile menu (hidden by default) -->
42
- <div id="mobileMenu" class="hidden sm:hidden absolute left-0 top-16 w-full bg-white border-b border-gray-200 py-2">
43
- <div class="flex flex-col space-y-2 px-4">
44
- <a href="#" onclick="showSection('coverage'); toggleMobileMenu()" class="nav-link block px-3 py-2 text-base font-medium text-gray-700">
 
45
  Language Coverage
46
  </a>
47
- <a href="#" onclick="showSection('comparison'); toggleMobileMenu()" class="nav-link block px-3 py-2 text-base font-medium text-gray-700">
48
  LLM Comparison
49
  </a>
50
- <a href="#" onclick="showSection('results'); toggleMobileMenu()" class="nav-link block px-3 py-2 text-base font-medium text-gray-700">
51
  Results by Language
52
  </a>
53
  </div>
54
  </div>
55
 
56
  <!-- Desktop menu -->
57
- <div class="hidden sm:flex justify-center h-16">
58
  <div class="flex">
59
  <div class="flex space-x-8">
60
  <a href="#" onclick="showSection('coverage')" class="nav-link active inline-flex items-center px-1 pt-1 border-b-2 border-indigo-500 text-sm font-medium text-gray-900">
@@ -79,10 +80,27 @@
79
 
80
  <section id="comparison" class="section hidden">
81
  <p class="text-gray-600">Coming soon...</p>
 
 
 
 
 
 
 
82
  </section>
83
 
84
  <section id="results" class="section hidden">
85
  <div id="language-list"></div>
 
 
 
 
 
 
 
 
 
 
86
  </section>
87
  </div>
88
 
 
2
  <html>
3
 
4
  <head>
5
+ <title>AI Language Monitor</title>
6
  <script src="https://cdn.tailwindcss.com"></script>
7
  <style>
8
  body {
 
27
  </head>
28
 
29
  <body>
30
+ <nav>
31
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
32
  <!-- Mobile menu button -->
33
  <div class="sm:hidden absolute left-4 top-4">
 
39
  </div>
40
 
41
  <!-- Mobile menu (hidden by default) -->
42
+ <div id="mobileMenu" class="hidden sm:hidden absolute left-0 top-16 bg-white shadow-lg py-4 mx-4 rounded-lg border border-gray-200">
43
+ <div class="flex flex-col">
44
+ <h3 class="px-6 py-2 text-gray-400 text-sm font-medium">Navigation</h3>
45
+ <a href="#" onclick="showSection('coverage'); toggleMobileMenu()" class="nav-link px-6 py-3 text-gray-600 hover:bg-gray-50">
46
  Language Coverage
47
  </a>
48
+ <a href="#" onclick="showSection('comparison'); toggleMobileMenu()" class="nav-link px-6 py-3 text-gray-600 hover:bg-gray-50">
49
  LLM Comparison
50
  </a>
51
+ <a href="#" onclick="showSection('results'); toggleMobileMenu()" class="nav-link px-6 py-3 text-gray-600 hover:bg-gray-50">
52
  Results by Language
53
  </a>
54
  </div>
55
  </div>
56
 
57
  <!-- Desktop menu -->
58
+ <div class="hidden sm:flex justify-center h-16 border-b border-gray-200">
59
  <div class="flex">
60
  <div class="flex space-x-8">
61
  <a href="#" onclick="showSection('coverage')" class="nav-link active inline-flex items-center px-1 pt-1 border-b-2 border-indigo-500 text-sm font-medium text-gray-900">
 
80
 
81
  <section id="comparison" class="section hidden">
82
  <p class="text-gray-600">Coming soon...</p>
83
+ <!--
84
+ - Leaderboard
85
+ - Filters
86
+ - commercial vs open source
87
+ - Eval results per task (across all languages)
88
+ - Timeline
89
+ -->
90
  </section>
91
 
92
  <section id="results" class="section hidden">
93
  <div id="language-list"></div>
94
+ <!--
95
+ - Filters
96
+ - free-text search
97
+ - by continent, by language family
98
+ - sort by: population ><, performance ><, datasets ><
99
+ - Language list with details
100
+ - Eval results for each task and model
101
+ - Available datasets
102
+ - Form field to submit more datasets and custom models
103
+ -->
104
  </section>
105
  </div>
106