Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception:    SplitsNotFoundError
Message:      The split names could not be parsed from the dataset config.
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/folder_based_builder/folder_based_builder.py", line 249, in _split_generators
                  raise ValueError(
              ValueError: `file_name` or `*_file_name` must be present as dictionary key (with type string) in metadata files
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 65, in compute_split_names_from_streaming_response
                  for split in get_dataset_split_names(
                               ^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
                  info = get_dataset_config_info(
                         ^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
                  raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
              datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Soccer Ball Tracking Dataset

Sample: 2018 HD wide angle Sample: 2018 HD close action

A curated dataset for detecting and tracking soccer balls in broadcast footage, specifically designed for tiny object detection challenges. This dataset supports the development of models robust to motion blur, long-shot scales, and occlusions.

Dataset Description

This public sample consists of 1,450 frames extracted from 10 video clips of professional soccer broadcasts. The data is split into two categories based on ball visibility:

  • Visible: Frames where the ball is clearly visible and annotated with a bounding box.
  • Not Visible: Frames where the ball is occluded, out of frame, or otherwise not visible (negative samples).

This is a representative subset of a larger internal dataset, selected to cover diverse match conditions (SD/HD, different teams, mined vs. segmented clips).

Statistics

Category Samples Description
Visible 884 Frames with at least one ball bounding box
Not Visible 566 Frames with no visible ball (hard negatives)
Total 1,450 Total frames from 10 clips

Source Data

  • Domain: Professional Soccer Broadcasts
  • Resolution: Varied
  • Annotation Style: YOLO format (normalized xywh)
  • Labeling Method: Active Learning Loop (Model Mining -> Pseudo-labeling -> Manual Verification)
  • Anonymization: Source video names have been replaced with UUIDs.

Dataset Structure

infactory-ai/ball-tracking/
β”œβ”€β”€ README.md
β”œβ”€β”€ metadata.csv
β”œβ”€β”€ dataset_info.json
└── data/
    β”œβ”€β”€ visible/
    β”‚   β”œβ”€β”€ {uuid}_{frame}.jpg
    β”‚   └── {uuid}_{frame}.txt   # YOLO label
    └── not_visible/
        └── {uuid}_{frame}.jpg

Metadata Fields (metadata.csv)

Field Type Description
file_path string Relative path to the image file
video_source string UUID of the source video clip
frame_index int Frame number in the original clip
visibility string visible or not_visible
bboxes_count int Number of bounding boxes in the frame

Usage

Loading with Hugging Face Datasets

from datasets import load_dataset

dataset = load_dataset("infactory-ai/ball-tracking", data_dir="data")

# Filter for visible frames
visible_frames = dataset.filter(lambda x: x["visibility"] == "visible")

Parsing Labels

Labels are in standard YOLO format: <class_id> <x_center> <y_center> <width> <height>

  • class_id: 0 (ball)
  • Coordinates are normalized to [0, 1].

Team

Name Role
Valentino Constantinou Head of Infrastructure
Dr. Mehdi Iranmanesh Applied AI Engineer
John Kanalakis Chief Technology Officer

License

This dataset is released under the Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0).

You are free to:

  • Share -- copy and redistribute the material in any medium or format
  • Adapt -- remix, transform, and build upon the material

Under the following terms:

  • Attribution -- You must give appropriate credit to Infactory, provide a link to the license, and indicate if changes were made.
  • Non-Commercial -- You may not use the material for commercial purposes without a separate commercial license from Infactory.

Commercial licensing: For commercial use, contact hello@infactory.ai.

Citation

@dataset{ball_tracking_2026,
  title={Soccer Ball Tracking Dataset},
  author={Constantinou, Valentino and Iranmanesh, Mehdi and Kanalakis, John},
  year={2026},
  publisher={Infactory},
  url={https://huggingface.co/datasets/infactory-ai/ball-tracking}
}
Downloads last month
17