Falah commited on
Commit
f97ec2f
1 Parent(s): 12c5f6f
Files changed (1) hide show
  1. README.md +65 -2
README.md CHANGED
@@ -12,6 +12,69 @@ dataset_info:
12
  download_size: 213345
13
  dataset_size: 828496
14
  ---
15
- # Dataset Card for "stable_diffusion_prompts"
16
 
17
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  download_size: 213345
13
  dataset_size: 828496
14
  ---
 
15
 
16
+ # Stable Diffusion Prompts Dataset
17
+
18
+ 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.
19
+
20
+ ## Dataset Details
21
+
22
+ - Dataset Name: Stable Diffusion Prompts Dataset
23
+ - Number of Prompts: 5000
24
+ - Labels: Art Style Names
25
+
26
+ ## Dataset Structure
27
+
28
+ The dataset is provided in a CSV file format with the following structure:
29
+
30
+ | Prompt | Label |
31
+ | --------------------------------------- | ------------- |
32
+ | A [fantasy_art_style] illustration... | fantasy_style |
33
+ | A [impressionist_art_style] painting... | impressionist |
34
+ | ... | ... |
35
+
36
+ The `Prompt` column contains the generated prompts, while the `Label` column corresponds to the art style name associated with each prompt.
37
+
38
+ ## Loading the Dataset
39
+
40
+ You can load the Stable Diffusion Prompts Dataset using the `load_dataset` function from the Hugging Face Datasets library. Here's an example:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ # Load the dataset
46
+ dataset = load_dataset('Falah/stable_diffusion_prompts',split="train")
47
+
48
+ # Access the prompts and labels
49
+ prompts = dataset['Prompt']
50
+ labels = dataset['Label']
51
+ ```
52
+
53
+ ## Usage
54
+
55
+ 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.
56
+
57
+ ## Citation
58
+
59
+ If you use this dataset in your research or any other work, please consider citing it as:
60
+
61
+ ```
62
+ @dataset{stable_diffusion_prompts,
63
+ author = {Falah.G.Salieh},
64
+ title = {Stable Diffusion Prompts Dataset},
65
+ year = {2023},
66
+ publisher = {Hugging Face},
67
+ version = {1.0},
68
+ url = {https://huggingface.co/datasets/Falah/stable_diffusion_prompts}
69
+ }
70
+ ```
71
+
72
+ ## License
73
+
74
+ The Stable Diffusion Prompts Dataset is provided under the [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).
75
+
76
+ ## Acknowledgements
77
+
78
+ We would like to acknowledge the contributors and authors of the original prompts dataset used for creating this Stable Diffusion Prompts Dataset.
79
+ ```
80
+