Dataset Viewer
The dataset could not be loaded because the splits use different data file formats, which is not supported. Read more about the splits configuration. Click for more details.
Couldn't infer the same data file format for all splits. Got {NamedSplit('train'): ('imagefolder', {}), NamedSplit('validation'): ('imagefolder', {}), NamedSplit('test'): ('text', {})}
Error code:   FileFormatMismatchBetweenSplitsError

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.

Pool Detection Dataset

This is a YOLO format dataset for object detection tasks.

Dataset Structure

pool/
  train/
    images/
    labels/
  valid/
    images/
    labels/
  test/
    images/
    labels/
  data.yaml

Classes

The dataset contains 16 classes representing pool balls (numbered 0-15).

Usage

In Python

from datasets import load_dataset

dataset = load_dataset("nhantu2107/pool-detection")

In Kaggle

  1. Go to your Kaggle notebook
  2. Click "Add data" -> "Hugging Face"
  3. Search for "pool-detection"
  4. Click "Add"

With YOLOv8/YOLOv11

from ultralytics import YOLO

model = YOLO('yolov8n.pt')
model.train(data='data.yaml', epochs=100)

Citation

If you use this dataset, please cite appropriately.

Downloads last month
42