OlegToshchev commited on
Commit
d9398aa
·
verified ·
1 Parent(s): acdd008

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +78 -0
README.md CHANGED
@@ -1,4 +1,5 @@
1
  ---
 
2
  dataset_info:
3
  features:
4
  - name: instruction
@@ -28,4 +29,81 @@ configs:
28
  data_files:
29
  - split: train
30
  path: data/train-*
 
 
 
 
31
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ size_categories: n<1K
3
  dataset_info:
4
  features:
5
  - name: instruction
 
29
  data_files:
30
  - split: train
31
  path: data/train-*
32
+ tags:
33
+ - synthetic
34
+ - distilabel
35
+ - rlaif
36
  ---
37
+
38
+ <p align="left">
39
+ <a href="https://github.com/argilla-io/distilabel">
40
+ <img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-light.png" alt="Built with Distilabel" width="200" height="32"/>
41
+ </a>
42
+ </p>
43
+
44
+ # Dataset Card for mydataset9
45
+
46
+ This dataset has been created with [distilabel](https://distilabel.argilla.io/).
47
+
48
+
49
+
50
+ ## Dataset Summary
51
+
52
+ This dataset contains a `pipeline.yaml` which can be used to reproduce the pipeline that generated it in distilabel using the `distilabel` CLI:
53
+
54
+ ```console
55
+ distilabel pipeline run --config "https://huggingface.co/datasets/OlegToshchev/mydataset9/raw/main/pipeline.yaml"
56
+ ```
57
+
58
+ or explore the configuration:
59
+
60
+ ```console
61
+ distilabel pipeline info --config "https://huggingface.co/datasets/OlegToshchev/mydataset9/raw/main/pipeline.yaml"
62
+ ```
63
+
64
+ ## Dataset structure
65
+
66
+ The examples have the following structure per configuration:
67
+
68
+
69
+ <details><summary> Configuration: default </summary><hr>
70
+
71
+ ```json
72
+ {
73
+ "distilabel_metadata": {
74
+ "raw_input_text_generation_0": [
75
+ {
76
+ "content": "Arianna has 12 chocolates more than Danny. Danny has 6 chocolates more than Robbie. Arianna has twice as many chocolates as Robbie has. How many chocolates does Danny have?",
77
+ "role": "user"
78
+ }
79
+ ],
80
+ "raw_output_text_generation_0": null
81
+ },
82
+ "generation": null,
83
+ "instruction": "Arianna has 12 chocolates more than Danny. Danny has 6 chocolates more than Robbie. Arianna has twice as many chocolates as Robbie has. How many chocolates does Danny have?",
84
+ "model_name": "http://localhost:8000/"
85
+ }
86
+ ```
87
+
88
+ This subset can be loaded as:
89
+
90
+ ```python
91
+ from datasets import load_dataset
92
+
93
+ ds = load_dataset("OlegToshchev/mydataset9", "default")
94
+ ```
95
+
96
+ Or simply as it follows, since there's only one configuration and is named `default`:
97
+
98
+ ```python
99
+ from datasets import load_dataset
100
+
101
+ ds = load_dataset("OlegToshchev/mydataset9")
102
+ ```
103
+
104
+
105
+ </details>
106
+
107
+
108
+
109
+