ezhoureal commited on
Commit
8afffc7
·
verified ·
1 Parent(s): 4a2bb9a

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +106 -0
README.md ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ task_categories:
4
+ - image-to-image
5
+ - text-to-image
6
+ language:
7
+ - en
8
+ tags:
9
+ - lora
10
+ - flux
11
+ - image-editing
12
+ - style-transfer
13
+ - aura-style
14
+ - paired-image-dataset
15
+ pretty_name: Aura Style Paired Image Dataset
16
+ size_categories:
17
+ - n<1K
18
+ ---
19
+
20
+ # Aura Style Paired Image Dataset
21
+
22
+ This dataset contains paired image examples for training a LoRA or image-editing model to apply a radiant aura lighting style. Each example has a conditioning/source image, a styled target image, and a prompt describing the target style.
23
+
24
+ ## Dataset Structure
25
+
26
+ ```text
27
+ .
28
+ ├── conditioning/
29
+ │ ├── pair-001.png
30
+ │ └── ...
31
+ └── train/
32
+ ├── metadata.jsonl
33
+ ├── pair-001.png
34
+ └── ...
35
+ ```
36
+
37
+ `train/metadata.jsonl` contains one row per target image:
38
+
39
+ ```json
40
+ {
41
+ "file_name": "pair-001.png",
42
+ "prompt": "A strong colorful light is illuminating man's silhouette...",
43
+ "kind": "paired",
44
+ "conditioning_path": "../conditioning/pair-001.png"
45
+ }
46
+ ```
47
+
48
+ ## Contents
49
+
50
+ - 25 paired training examples
51
+ - 25 target images in `train/`
52
+ - 25 conditioning images in `conditioning/`
53
+ - Image sizes:
54
+ - 15 images at 1024 x 1024
55
+ - 9 images at 1344 x 896
56
+ - 1 image at 1486 x 1058
57
+
58
+ ## Columns
59
+
60
+ - `image`: target/styled image loaded from `train/file_name`
61
+ - `prompt`: text prompt for the styled target image
62
+ - `kind`: record type; currently all rows are `paired`
63
+ - `conditioning_path`: relative path to the source/conditioning image
64
+ - `source_label`: optional provenance label for generated paired records
65
+
66
+ ## Loading
67
+
68
+ ```python
69
+ from datasets import load_dataset
70
+
71
+ dataset = load_dataset("ezhoureal/aura_style")
72
+ train = dataset["train"]
73
+ ```
74
+
75
+ To resolve conditioning images:
76
+
77
+ ```python
78
+ from pathlib import Path
79
+ from PIL import Image
80
+
81
+ row = train[0]
82
+ conditioning_path = Path("conditioning") / Path(row["conditioning_path"]).name
83
+ conditioning_image = Image.open(conditioning_path)
84
+ ```
85
+
86
+ When using a local clone or `hf download`, the paths in `conditioning_path` are relative to `train/metadata.jsonl`.
87
+
88
+ ## Intended Use
89
+
90
+ This dataset is intended for LoRA training and image-editing experiments where the model learns to transform a source image into a smooth, luminous aura style with colorful gradients, ethereal haze, contour lighting, and a cinematic glow.
91
+
92
+ The local training workspace for this dataset uses the folder root as an ImageFolder dataset:
93
+
94
+ ```bash
95
+ accelerate launch -m lora.trainers.flux_lowmem \
96
+ --dataset_name /path/to/training_data \
97
+ --caption_column prompt
98
+ ```
99
+
100
+ ## Limitations
101
+
102
+ The dataset is small and style-specific. It is suitable for targeted LoRA training, smoke tests, and controlled style-transfer experiments, but it is not intended as a broad general-purpose image dataset.
103
+
104
+ ## License and Usage Notes
105
+
106
+ The dataset card does not grant rights beyond the rights held for the included images. Verify that your intended use is compatible with the source image rights, model license, and any platform or training-service terms before redistributing derivatives or trained weights.