CoolFace
Datasetpublic

Falah/stable_diffusion_prompts

Stable Diffusion Prompts Dataset The Stable Diffusion Prompts Dataset is a collection of prompts designed to generate art-style prompts for the Stable Diffusion Model. This dataset provides prompts for generating art-related descriptions using a specific art style as the label. Dataset Details Dataset Name: Stable Diffusion Prompts Dataset Number of Prompts: 5000 Labels: Art Style Names Dataset Structure The dataset is provided in a CSV file… See the full description on the dataset page: https://huggingface.co/datasets/Falah/stable_diffusion_prompts.

sourceHugging Faceupdated 3y agoView on Hugging Face
1likes44downloads
Dataset Card

Stable Diffusion Prompts Dataset

The Stable Diffusion Prompts Dataset is a collection of prompts designed to generate art-style prompts for the Stable Diffusion Model. This dataset provides prompts for generating art-related descriptions using a specific art style as the label.

Dataset Details

  • Dataset Name: Stable Diffusion Prompts Dataset
  • Number of Prompts: 5000
  • Labels: Art Style Names

Dataset Structure

The dataset is provided in a CSV file format with the following structure:

PromptLabel
A [fantasyartstyle] illustration...fantasy_style
A [impressionistartstyle] painting...impressionist
......

The Prompt column contains the generated prompts, while the Label column corresponds to the art style name associated with each prompt.

Loading the Dataset

You can load the Stable Diffusion Prompts Dataset using the load_dataset function from the Hugging Face Datasets library. Here's an example:

python
from datasets import load_dataset

# Load the dataset
dataset = load_dataset('Falah/stable_diffusion_prompts',split="train")

# Access the prompts and labels
prompts = dataset['Prompt']
labels = dataset['Label']

Usage

The Stable Diffusion Prompts Dataset can be used as training data for the Stable Diffusion Model or any other language generation model. It enables the model to learn and generate prompts related to different art styles.

Citation

If you use this dataset in your research or any other work, please consider citing it as:

@dataset{stable_diffusion_prompts,
  author = {Falah.G.Salieh},
  title = {Stable Diffusion Prompts Dataset},
  year = {2023},
  publisher = {Hugging Face},
  version = {1.0},
  url = {https://huggingface.co/datasets/Falah/stable_diffusion_prompts}
}

License

The Stable Diffusion Prompts Dataset is provided under the Creative Commons Attribution-ShareAlike 4.0 International License.

Acknowledgements

We would like to acknowledge the contributors and authors of the original prompts dataset used for creating this Stable Diffusion Prompts Dataset.