aimlresearch2023 commited on
Commit
6224d98
1 Parent(s): 5e2a0ca

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md CHANGED
@@ -1,4 +1,5 @@
1
  ---
 
2
  dataset_info:
3
  features:
4
  - name: instruction
@@ -22,4 +23,80 @@ configs:
22
  data_files:
23
  - split: train
24
  path: data/train-*
 
 
 
 
25
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ size_categories: n<1K
3
  dataset_info:
4
  features:
5
  - name: instruction
 
23
  data_files:
24
  - split: train
25
  path: data/train-*
26
+ tags:
27
+ - synthetic
28
+ - distilabel
29
+ - rlaif
30
  ---
31
+
32
+ <p align="left">
33
+ <a href="https://github.com/argilla-io/distilabel">
34
+ <img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-light.png" alt="Built with Distilabel" width="200" height="32"/>
35
+ </a>
36
+ </p>
37
+
38
+ # Dataset Card for distilabel_4
39
+
40
+ This dataset has been created with [distilabel](https://distilabel.argilla.io/).
41
+
42
+ ## Dataset Summary
43
+
44
+ This dataset contains a `pipeline.yaml` which can be used to reproduce the pipeline that generated it in distilabel using the `distilabel` CLI:
45
+
46
+ ```console
47
+ distilabel pipeline run --config "https://huggingface.co/datasets/aimlresearch2023/distilabel_4/raw/main/pipeline.yaml"
48
+ ```
49
+
50
+ or explore the configuration:
51
+
52
+ ```console
53
+ distilabel pipeline info --config "https://huggingface.co/datasets/aimlresearch2023/distilabel_4/raw/main/pipeline.yaml"
54
+ ```
55
+
56
+ ## Dataset structure
57
+
58
+ The examples have the following structure per configuration:
59
+
60
+
61
+ <details><summary> Configuration: default </summary><hr>
62
+
63
+ ```json
64
+ {
65
+ "generation_models": [
66
+ "microsoft/Phi-3-mini-128k-instruct",
67
+ "microsoft/Phi-3-mini-128k-instruct"
68
+ ],
69
+ "generations": [
70
+ null,
71
+ null
72
+ ],
73
+ "instruction": "Provide step-by-step instructions on how to make a safe and effective homemade all-purpose cleaner from common household ingredients. The guide should include measurements, tips for storing the cleaner, and additional variations or scents that can be added. Additionally, the guide should be written in clear and concise language, with helpful visuals or photographs to aid in the process.",
74
+ "ratings": [
75
+ null,
76
+ null
77
+ ],
78
+ "rationales": [
79
+ null,
80
+ null
81
+ ]
82
+ }
83
+ ```
84
+
85
+ This subset can be loaded as:
86
+
87
+ ```python
88
+ from datasets import load_dataset
89
+
90
+ ds = load_dataset("aimlresearch2023/distilabel_4", "default")
91
+ ```
92
+
93
+ Or simply as it follows, since there's only one configuration and is named `default`:
94
+
95
+ ```python
96
+ from datasets import load_dataset
97
+
98
+ ds = load_dataset("aimlresearch2023/distilabel_4")
99
+ ```
100
+
101
+
102
+ </details>