tfrere commited on
Commit
943bdb2
Β·
1 Parent(s): 5470817

add readme

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Leaderboard Explorer
3
+ emoji: πŸ”
4
+ colorFrom: indigo
5
+ colorTo: purple
6
+ sdk: docker
7
+ hf_oauth: false
8
+ pinned: false
9
+ license: apache-2.0
10
+ app_port: 7860
11
+ tags:
12
+ - explorer
13
+ short_description: Explore and discover all leaderboards from the Hugging Face community
14
+ ---
15
+
16
+ # Leaderboard Explorer
17
+
18
+ An application to explore and discover all leaderboards from the Hugging Face community.
19
+
20
+ ## Features
21
+
22
+ - πŸ” Browse leaderboards by category
23
+ - 🏷️ Filter by tags (code, math, vision, audio, etc.)
24
+ - 🎯 "Arena only" mode to display only human-evaluated leaderboards
25
+ - πŸŒ“ Dark/Light mode
26
+ - πŸ”„ Automatic data updates
27
+
28
+ ## Local Development
29
+
30
+ 1. Install client dependencies:
31
+
32
+ ```bash
33
+ cd client
34
+ npm install
35
+ npm run dev
36
+ ```
37
+
38
+ 2. Install server dependencies:
39
+
40
+ ```bash
41
+ cd server
42
+ poetry install
43
+ poetry run python server.py
44
+ ```
45
+
46
+ ## Deployment
47
+
48
+ The application is configured to be deployed on a Hugging Face Space using Docker.