Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,19 +1,46 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
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.
|