t8ix commited on
Commit
ad8669b
·
verified ·
1 Parent(s): 1d995ae

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +44 -17
README.md CHANGED
@@ -1,19 +1,46 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: text
7
- dtype: string
8
- splits:
9
- - name: train
10
- num_bytes: 29726008.0
11
- num_examples: 27
12
- download_size: 29727345
13
- dataset_size: 29726008.0
14
- configs:
15
- - config_name: default
16
- data_files:
17
- - split: train
18
- path: data/train-*
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - text-to-image
5
+ tags:
6
+ - stable-diffusion
7
+ - sdxl
8
+ - dreambooth
9
+ - lora
10
+ language:
11
+ - en
12
+ size_categories:
13
+ - n<1K
 
 
 
 
 
14
  ---
15
+
16
+ # kuyen-dog-sdxl
17
+
18
+ ## Dataset Description
19
+
20
+ This is a DreamBooth training dataset for SDXL fine-tuning. The dataset contains 27 image-text pairs.
21
+
22
+ ## Dataset Structure
23
+
24
+ - **image**: Training images in RGB format
25
+ - **text**: Corresponding captions/prompts for each image
26
+
27
+ ## Usage
28
+
29
+ This dataset is designed for use with SDXL DreamBooth training scripts. You can load it using:
30
+
31
+ ```python
32
+ from datasets import load_dataset
33
+
34
+ dataset = load_dataset("t8ix/kuyen-dog-sdxl")
35
+ ```
36
+
37
+ ## Training Details
38
+
39
+ - Format: Image-text pairs
40
+ - Image format: RGB
41
+ - Text format: String captions
42
+ - Intended use: SDXL DreamBooth LoRA training
43
+
44
+ ## License
45
+
46
+ This dataset is released under the MIT license.