CoolFace
Datasetpublic

sfarrukhm/intel-image-classification

Intel Image Classification The Intel Image Classification dataset contains images of natural scenes categorized into six classes: Buildings Forest Glacier Mountain Sea Street πŸ“† Content The dataset contains ~25,000 images of size 150x150 pixels. Images are evenly distributed across 6 categories: {'buildings' -> 0, 'forest' -> 1, 'glacier' -> 2, 'mountain' -> 3, 'sea' -> 4, 'street' -> 5 } It is divided into three parts: Training… See the full description on the dataset page: https://huggingface.co/datasets/sfarrukhm/intel-image-classification.

sourceHugging Faceotherupdated 1y agoView on Hugging Face
2likes1.2kdownloads
Dataset Card

Intel Image Classification

The Intel Image Classification dataset contains images of natural scenes categorized into six classes:

  • β€”Buildings
  • β€”Forest
  • β€”Glacier
  • β€”Mountain
  • β€”Sea
  • β€”Street

πŸ“† Content

  • β€”The dataset contains ~25,000 images of size 150x150 pixels.
  • β€”Images are evenly distributed across 6 categories:
  {'buildings' -> 0,
   'forest'    -> 1,
   'glacier'   -> 2,
   'mountain'  -> 3,
   'sea'       -> 4,
   'street'    -> 5 }
  • β€”It is divided into three parts:
  • β€”Training set: ~14,000 images
  • β€”Test set: ~3,000 images
  • β€”Prediction set: ~7,000 images

The train, test, and prediction images are stored in separate folders.


πŸ§ͺ Structure

data/
β”œβ”€β”€ seg_train/
β”‚   β”œβ”€β”€ buildings/
β”‚   β”œβ”€β”€ forest/
β”‚   β”œβ”€β”€ glacier/
β”‚   β”œβ”€β”€ mountain/
β”‚   β”œβ”€β”€ sea/
β”‚   └── street/
β”œβ”€β”€ seg_test/
β”‚   └── ...
└── seg_pred/
    └── ...

πŸ”— Source & Acknowledgements


πŸ’» Usage

You can load this dataset using Hugging Face's datasets library:

python
from datasets import load_dataset

dataset = load_dataset("sfarrukhm/intel-image-classification")
sfarrukhm/intel-image-classification Β· CoolFace