Datasets:
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +64 -0
- metadata.csv +3 -0
- tags.csv +0 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
metadata.csv filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
configs:
|
| 3 |
+
- config_name: tags
|
| 4 |
+
data_files: "tags.csv"
|
| 5 |
+
default: true
|
| 6 |
+
- config_name: metadata
|
| 7 |
+
data_files: "metadata.csv"
|
| 8 |
+
license: other
|
| 9 |
+
license_name: osu-terms
|
| 10 |
+
license_link: https://osu.ppy.sh/legal/terms
|
| 11 |
+
pretty_name: osu! Beatmap Tags
|
| 12 |
+
size_categories:
|
| 13 |
+
- 10K<n<100K
|
| 14 |
+
tags:
|
| 15 |
+
- music
|
| 16 |
+
- rhythm-game
|
| 17 |
+
- beatmaps
|
| 18 |
+
- osu
|
| 19 |
+
task_categories:
|
| 20 |
+
- other
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# osu! Beatmap Tags
|
| 24 |
+
|
| 25 |
+
Community-voted [user tags](https://osu.ppy.sh/wiki/en/Beatmap/Beatmap_tags#user-tags) for osu! beatmaps, scraped from the [osu! API v2](https://osu.ppy.sh/docs/index.html). The dataset covers all four game modes (osu!, osu!taiko, osu!catch, osu!mania) and includes beatmap metadata alongside tag vote counts.
|
| 26 |
+
|
| 27 |
+
## Dataset Contents
|
| 28 |
+
|
| 29 |
+
The dataset consists of two CSV files:
|
| 30 |
+
|
| 31 |
+
### `tags.csv`
|
| 32 |
+
|
| 33 |
+
One row per beatmap. Contains the vote count for each of the 122 user tags. Beatmaps without tags are not included. Tags are sorted from the most common to the least common.
|
| 34 |
+
|
| 35 |
+
- **Rows:** 44,795 beatmaps
|
| 36 |
+
- **Columns:** `beatmapset_id` + 122 tag columns
|
| 37 |
+
- **Values:** Integer vote counts (empty = not returned from API)
|
| 38 |
+
|
| 39 |
+
Tag columns follow the `category/name` naming convention used by osu!, e.g. `skillset/jumps`, `streams/bursts`, `style/clean`.
|
| 40 |
+
|
| 41 |
+
Statistics:
|
| 42 |
+
|
| 43 |
+
| Metric | Value |
|
| 44 |
+
|--------|-------|
|
| 45 |
+
| Total beatmaps | 44,795 |
|
| 46 |
+
| Total tags | 128,558 |
|
| 47 |
+
| Total votes | 471,766 |
|
| 48 |
+
|
| 49 |
+
### `metadata.csv`
|
| 50 |
+
|
| 51 |
+
One row per beatmap. Contains beatmap metadata fetched from the [osu! API v1](https://github.com/ppy/osu-api/wiki#apiget_beatmaps).
|
| 52 |
+
|
| 53 |
+
- **Rows:** 217,217 difficulties across 56,035 beatmapsets
|
| 54 |
+
- **Columns:** 42 fields including difficulty settings, song info, play statistics, and more
|
| 55 |
+
|
| 56 |
+
## Notes
|
| 57 |
+
|
| 58 |
+
- Tags are only available for beatmaps that have been played in osu!lazer; older or less popular maps may have few or no votes
|
| 59 |
+
- The tag system launched in March 2025, so vote counts reflect early adoption
|
| 60 |
+
- Mapper tags (free-form keywords in the `tags` column of `metadata.csv`) are separate from the structured user tags in `tags.csv`
|
| 61 |
+
|
| 62 |
+
## License
|
| 63 |
+
|
| 64 |
+
Data sourced from the [osu! API](https://osu.ppy.sh/api/v2). Usage is subject to [osu!'s terms of service](https://osu.ppy.sh/legal/en/Terms).
|
metadata.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd1feff71644262c2080a2f194980405e9474231a56d2c497a00e2a0868c2a99
|
| 3 |
+
size 105953056
|
tags.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|