nbeerbower commited on
Commit
7e882a9
·
verified ·
1 Parent(s): 2780f13

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +30 -21
README.md CHANGED
@@ -1,21 +1,30 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: prompt
5
- dtype: string
6
- - name: chosen
7
- dtype: image
8
- - name: rejected
9
- dtype: image
10
- splits:
11
- - name: train
12
- num_bytes: 1915104723
13
- num_examples: 620
14
- download_size: 1915248356
15
- dataset_size: 1915104723
16
- configs:
17
- - config_name: default
18
- data_files:
19
- - split: train
20
- path: data/train-*
21
- ---
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Filtered and Recaptioned Dataset
3
+
4
+ This dataset was created from [nbeerbower/NikuX-DPO-filtered](https://huggingface.co/datasets/nbeerbower/NikuX-DPO-filtered)
5
+ with manually selected samples and edited prompts.
6
+
7
+ ## Dataset Information
8
+ - **Original dataset**: nbeerbower/NikuX-DPO-filtered
9
+ - **Number of samples**: 620
10
+ - **Selected indices**: 620 samples were selected and potentially recaptioned
11
+
12
+ ## Columns
13
+ - `prompt`: The edited/recaptioned text prompt
14
+ - `chosen`: The chosen/preferred image
15
+ - `rejected`: The rejected/non-preferred image
16
+
17
+ ## Creation Process
18
+ This dataset was created using a manual review tool that allowed:
19
+ 1. Browsing through the original dataset
20
+ 2. Selecting samples to keep
21
+ 3. Editing/recaptioning the prompts
22
+ 4. Exporting the filtered dataset
23
+
24
+ ## Usage
25
+
26
+ ```python
27
+ from datasets import load_dataset
28
+
29
+ dataset = load_dataset("nbeerbower/NikuFix")
30
+ ```