Spaces:
Running
Running
add readme
Browse files
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.
|