docs/en/datasets/pose/tiger-pose.md
Ultralytics introduces the Tiger-Pose dataset, a versatile collection designed for pose estimation tasks. This dataset comprises 263 images sourced from a YouTube video, with 210 images allocated for training and 53 for validation. It serves as an excellent resource for testing and troubleshooting pose estimation algorithms.
Despite its manageable training split of 210 images, the Tiger-Pose dataset offers diversity, making it suitable for assessing training pipelines, identifying potential errors, and serving as a valuable preliminary step before working with larger datasets for pose estimation.
Once your pipeline trains clean on this small set, swap in your own animal or object keypoints and scale up training on Ultralytics Platform without leaving the browser.
labels/{train,val} alongside images/{train,val} directories.<strong>Watch:</strong> Train an Ultralytics YOLO Pose Model on the Tiger-Pose Dataset
</p>A YAML (Yet Another Markup Language) file serves as the means to specify the configuration details of a dataset. It encompasses crucial data such as file paths, class definitions, and other pertinent information. Specifically, for the tiger-pose.yaml file, you can check Ultralytics Tiger-Pose Dataset Configuration File.
!!! example "ultralytics/cfg/datasets/tiger-pose.yaml"
```yaml
--8<-- "ultralytics/cfg/datasets/tiger-pose.yaml"
```
To train a YOLO26n-pose model on the Tiger-Pose dataset for 100 epochs with an image size of 640, you can use the following code snippets. For a comprehensive list of available arguments, refer to the model Training page.
!!! example "Train Example"
=== "Python"
```python
from ultralytics import YOLO
# Load a model
model = YOLO("yolo26n-pose.pt") # load a pretrained model (recommended for training)
# Train the model
results = model.train(data="tiger-pose.yaml", epochs=100, imgsz=640)
```
=== "CLI"
```bash
# Start training from a pretrained *.pt model
yolo pose train data=tiger-pose.yaml model=yolo26n-pose.pt epochs=100 imgsz=640
```
Here are some examples of images from the Tiger-Pose dataset, along with their corresponding annotations:
The example showcases the variety and complexity of the images in the Tiger-Pose dataset and the benefits of using mosaicing during the training process.
After training, load your best checkpoint and run inference on new images or video — see the Prediction page for the full list of arguments.
!!! example "Inference Example"
=== "Python"
```python
from ultralytics import YOLO
# Load a model
model = YOLO("path/to/best.pt") # load a tiger-pose trained model
# Run inference
results = model.predict(source="https://youtu.be/MIBAT6BGE6U", show=True)
```
=== "CLI"
```bash
# Run inference using a tiger-pose trained model
yolo pose predict source="https://youtu.be/MIBAT6BGE6U" show=True model="path/to/best.pt"
```
The dataset has been released under the AGPL-3.0 License.
The Ultralytics Tiger-Pose dataset is designed for pose estimation tasks, consisting of 263 images sourced from a YouTube video. The dataset is divided into 210 training images and 53 validation images, making it well-suited for testing, training, and refining pose estimation algorithms.
Load yolo26n-pose.pt and call model.train(data="tiger-pose.yaml", epochs=100, imgsz=640) — see the Train Example above for the full Python and CLI snippets, and the Training page for a comprehensive list of arguments.
tiger-pose.yaml file include?The tiger-pose.yaml file defines the dataset path, train/val image directories, a single class (tiger), and kpt_shape: [12, 2] — 12 keypoints per instance with no visibility flag. See the Ultralytics Tiger-Pose Dataset Configuration File for the exact configuration.
Load your trained checkpoint (e.g., path/to/best.pt) and call model.predict(source=..., show=True) — see the Inference Example above for the full Python and CLI snippets, and the Prediction page for a comprehensive list of arguments.
With 263 total images (210 train / 53 val), 1 class, 12 keypoints per instance, and a ~49.8 MB download, Tiger-Pose is small enough to manage quickly yet diverse enough to sanity-check a pose training pipeline and identify errors before working with larger datasets.