thedeoxen commited on
Commit
5a3bd00
Β·
verified Β·
1 Parent(s): 427e248

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -15
README.md CHANGED
@@ -9,23 +9,27 @@ This dataset was created for training **Flux Kontext RefControl LoRAs**.
9
  It provides paired data of **control maps** (depth, pose, lineart, canny) and their **corresponding results** for reference-guided training.
10
 
11
  ---
12
-
13
  ## πŸ“‚ Dataset Structure
14
 
15
- dataset
16
-
17
- -depth
18
- --control
19
- --result
20
- -pose
21
- --control
22
- --result
23
- -lineart
24
- --control
25
- --result
26
- -canny
27
- --control
28
- --result
 
 
 
 
 
29
 
30
 
31
 
 
9
  It provides paired data of **control maps** (depth, pose, lineart, canny) and their **corresponding results** for reference-guided training.
10
 
11
  ---
 
12
  ## πŸ“‚ Dataset Structure
13
 
14
+ ```text
15
+ dataset/
16
+ β”‚
17
+ β”œβ”€β”€ depth/
18
+ β”‚ β”œβ”€β”€ control/ # depth maps
19
+ β”‚ └── result/ # corresponding images
20
+ β”‚
21
+ β”œβ”€β”€ pose/
22
+ β”‚ β”œβ”€β”€ control/ # pose skeletons / keypoints
23
+ β”‚ └── result/ # corresponding images
24
+ β”‚
25
+ β”œβ”€β”€ lineart/
26
+ β”‚ β”œβ”€β”€ control/ # lineart outlines
27
+ β”‚ └── result/ # corresponding images
28
+ β”‚
29
+ β”œβ”€β”€ canny/
30
+ β”‚ β”œβ”€β”€ control/ # canny edge maps
31
+ β”‚ └── result/ # corresponding images
32
+ ```
33
 
34
 
35