TsienDragon commited on
Commit
cd15c24
·
verified ·
1 Parent(s): 1182b0d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -31
README.md CHANGED
@@ -1,31 +1,68 @@
1
- ---
2
- license: mit
3
- dataset_info:
4
- features:
5
- - name: id
6
- dtype: string
7
- - name: control_images
8
- list: image
9
- - name: control_mask
10
- dtype: image
11
- - name: target_image
12
- dtype: image
13
- - name: prompt
14
- dtype: string
15
- splits:
16
- - name: train
17
- num_bytes: 8458819.0
18
- num_examples: 20
19
- - name: test
20
- num_bytes: 2807087.0
21
- num_examples: 2
22
- download_size: 11241583
23
- dataset_size: 11265906.0
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
- - split: test
30
- path: data/test-*
31
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ dataset_info:
4
+ features:
5
+ - name: id
6
+ dtype: string
7
+ - name: control_images
8
+ list: image
9
+ - name: control_mask
10
+ dtype: image
11
+ - name: target_image
12
+ dtype: image
13
+ - name: prompt
14
+ dtype: string
15
+ splits:
16
+ - name: train
17
+ num_bytes: 8458819
18
+ num_examples: 20
19
+ - name: test
20
+ num_bytes: 2807087
21
+ num_examples: 2
22
+ download_size: 11241583
23
+ dataset_size: 11265906
24
+ configs:
25
+ - config_name: default
26
+ data_files:
27
+ - split: train
28
+ path: data/train-*
29
+ - split: test
30
+ path: data/test-*
31
+ task_categories:
32
+ - image-to-image
33
+ language:
34
+ - en
35
+ tags:
36
+ - face_seg
37
+ pretty_name: tsien
38
+ size_categories:
39
+ - n<1K
40
+ ---
41
+ This is the dataset used for FluxKontext or Qwen-Image-Edit training with the task image-text2image.
42
+ This is a good adtaset that can very fine the effect of finetuning, where the base model is not good at
43
+
44
+ Refer this for the lora finetune model [**qwen-image-edit-lora-face-segmentation**](https://huggingface.co/TsienDragon/qwen-image-edit-lora-face-segmentation)
45
+
46
+ Usage of the dataset
47
+ ```
48
+ dd = load_editing_dataset("TsienDragon/face_segmentation_20")
49
+ sample = dd["test"][0]
50
+ ```
51
+
52
+ Example of the data structure
53
+ ```bash
54
+ DATASET_ROOT/train
55
+ ├── control_images
56
+ │ ├── 060002_4_028450_FEMALE_30.png
57
+ │ ├── 060002_4_028450_FEMALE_30_1.png
58
+ │ ├── 060002_4_028450_FEMALE_30_2.jpg
59
+ │ ├── 060002_4_028450_FEMALE_30_mask.png
60
+ │ ├── 060003_4_028451_FEMALE_65.png
61
+ │ ├── 060003_4_028451_FEMALE_65_1.png
62
+ │ └── 060003_4_028451_FEMALE_65_mask.png
63
+ └── training_images
64
+ ├── 060002_4_028450_FEMALE_30.txt
65
+ ├── 060002_4_028450_FEMALE_30.png
66
+ ├── 060003_4_028451_FEMALE_65.txt
67
+ └── 060003_4_028451_FEMALE_65.png
68
+ ```