datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
PetImagesThis is clone of popular Cats Vs. Dogs image classification dataset for CNN-based visual classification models.
If you are using raw images (stored in /data), this script can be used for creating train-test split on the raw images dataset:
def fetching_selected_data(cats_images_subpath: str, dogs_images_subpath: str, test_split: int,
max_len: int = 1000000000):
total_len = min(len(os.listdir(cats_images_subpath))… See the full description on the dataset page: https://huggingface.co/datasets/Man1103/PetImages.petImages
