CoolFace
Datasetpublic

oyemprince/generative-ai-artstyles

Artwork Dataset Overview This dataset contains images of artworks from various art movements. It is designed to help in training generative models to create new artwork pieces inspired by different art styles. The dataset includes images categorized into five major art movements: Renaissance Impressionism Cubism Surrealism Abstract Dataset Structure The dataset is organized into subdirectories, each representing an art movement. The images are… See the full description on the dataset page: https://huggingface.co/datasets/oyemprince/generative-ai-artstyles.

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes4downloads
Dataset Card

Artwork Dataset

Overview

This dataset contains images of artworks from various art movements. It is designed to help in training generative models to create new artwork pieces inspired by different art styles. The dataset includes images categorized into five major art movements:

  • Renaissance
  • Impressionism
  • Cubism
  • Surrealism
  • Abstract

Dataset Structure

The dataset is organized into subdirectories, each representing an art movement. The images are stored in the following format:

artworkdataset/ renaissanceart/ renaissanceart0001.jpg renaissanceart0002.jpg ... impressionismart/ impressionismart0001.jpg impressionismart0002.jpg ... cubismart/ cubismart0001.jpg ... surrealismart/ surrealismart0001.jpg ... abstractart/ abstractart0001.jpg ...

Each subdirectory contains images related to a specific art style. Images are named sequentially for consistent organization.

Dataset Details

  • Total Number of Images: [Insert Total Number of Images]
  • Number of Images per Art Style: Approximately [Insert Number of Images per Art Style]
  • Image Format: JPEG
  • Image Size: Varies

Purpose

This dataset is intended for use in training generative models such as GANs (Generative Adversarial Networks) or VAEs (Variational Autoencoders) to create new and diverse artwork. It can also be used for tasks such as style transfer, artistic style classification, and more.

Usage

To use this dataset, you can load it using the datasets library from Hugging Face or manually access the images from the provided directories.

Example Code to Load Dataset

python
from datasets import load_dataset

dataset = load_dataset("your_huggingface_username/artwork_dataset")