Datasets:

Modalities:
Video
Size:
< 1K
Libraries:
Datasets
License:

You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

Download the Kings/Queens League dataset in the OSL Action Spotting JSON format

from huggingface_hub import snapshot_download
snapshot_download(repo_id="OpenSportsLab/KQL", 
                  repo_type="dataset", revision="main",
                  local_dir="KQL")

Download specific subsets

Download Queens League only

from huggingface_hub import snapshot_download

# Download the Queens League dataset only
snapshot_download(repo_id="OpenSportsLab/KQL", 
                  repo_type="dataset", revision="main",
                  local_dir="KQL",
                  allow_patterns="QueensLeague/*")

Download Kings League only

from huggingface_hub import snapshot_download

# Download the Kings League dataset only
snapshot_download(repo_id="OpenSportsLab/KQL", 
                  repo_type="dataset", revision="main",
                  local_dir="KQL",
                  allow_patterns="KingsLeague/*")
Downloads last month
130