File size: 3,663 Bytes
e80702c 4bdf612 e80702c 4bdf612 e80702c 4bdf612 e80702c 4bdf612 e80702c e434c92 4bdf612 e80702c fcacceb 4bdf612 fcacceb e80702c e434c92 a864918 fcacceb a864918 e80702c 4bdf612 e80702c 4bdf612 818862f fcacceb 4bdf612 d4d5364 e80702c 4bdf612 e434c92 4bdf612 dc0d89e 4bdf612 e80702c dc0d89e e80702c 4bdf612 818862f fcacceb e80702c fcacceb e434c92 dc0d89e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | ---
license: other
license_name: repdb-free
license_link: LICENSE.md
language:
- en
- de
- es
pretty_name: Exercise Dataset (Free Tier, RepDB)
tags:
- fitness
- exercise
- workout
- sports
- health
size_categories:
- n<1K
configs:
- config_name: default
data_files: exercises.csv
---
# Exercise Dataset — Free Tier (RepDB)
A free, ready-to-use **fitness exercise dataset**: **250 exercises**, each
illustrated with flat-style **512×512 WebP** images (a start/peak pose pair, or
a single main pose for static holds and stretches), with target muscles,
equipment, MET values, and full instructions in **English, German, and
Spanish**.
This is the free tier of [**RepDB**](https://repdb.co/?utm_source=huggingface) — a curated, commercial-safe
exercise dataset. The full dataset keeps growing and adds 1024px images, the
classic illustration style with transparent backgrounds, and looping
animations — see [repdb.co/pricing](https://repdb.co/pricing?utm_source=huggingface).
<div align="center">
<a href="https://huggingface.co/spaces/RepDB/repdb-exercise-dataset-explorer">
<img src="https://huggingface.co/datasets/RepDB/exercise-dataset/resolve/main/premium-samples/bent-over-db-row.webp" alt="Premium animation preview" width="280">
</a>
<h3>⚡ See the premium animation quality</h3>
<p>Browse the full catalog and preview the Standard-tier assets in the interactive explorer.</p>
<p><a href="https://huggingface.co/spaces/RepDB/repdb-exercise-dataset-explorer"><strong>▶ OPEN THE INTERACTIVE EXPLORER</strong></a></p>
</div>
**What the paid Standard tier looks like** (`premium-samples/`, same clip
shipped on https://repdb.co):
[**See pricing →**](https://repdb.co/pricing?utm_source=huggingface)
## Files
- `exercises.json` — structured records (schema v3).
- `exercises.csv` — one row per exercise (pipe-separated list fields;
`equipment` is empty for bodyweight-only moves).
- `images/flat/` — flat illustration, solid background, 512×512 WebP.
Filenames: `<id>-start.webp` + `<id>-peak.webp`, or `<id>-main.webp` for
single-pose exercises.
- `premium-samples/` — one exercise at Standard-tier quality (classic stills +
transparent-background looping animation, the same clip shown on
[repdb.co](https://repdb.co/?utm_source=huggingface)) so you can see the paid-tier assets before buying.
- `LICENSE.md` — the free-tier license (full text).
- `ATTRIBUTION.md` — copy-paste Markdown, HTML, and app-credit attribution.
## Load it
```python
import json
from huggingface_hub import hf_hub_download
path = hf_hub_download("RepDB/exercise-dataset", "exercises.json", repo_type="dataset")
with open(path, encoding="utf-8") as f:
data = json.load(f)
print(data["count"], "exercises")
```
Or straight from the dataset site:
```python
import json, urllib.request
url = "https://exercise-dataset.com/exercises.json"
data = json.load(urllib.request.urlopen(url))
```
## License
RepDB Free Tier License (see `LICENSE.md`): free for **personal and commercial
use inside applications** with attribution ("Exercise data by RepDB
(repdb.co)"). No redistribution as a dataset or API; images may not be used as
input or training material for generative models. For the full, growing
dataset with a commercial license, see [repdb.co/pricing](https://repdb.co/pricing?utm_source=huggingface).
## Links
- Full dataset & pricing: [repdb.co/pricing](https://repdb.co/pricing?utm_source=huggingface)
- GitHub: https://github.com/RepDB/exercise-dataset
- Browsable viewer: https://exercise-dataset.com/
|