plaguss HF staff commited on
Commit
04190cd
1 Parent(s): 1c04fca

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md CHANGED
@@ -1,4 +1,5 @@
1
  ---
 
2
  dataset_info:
3
  features:
4
  - name: instruction
@@ -16,4 +17,65 @@ configs:
16
  data_files:
17
  - split: train
18
  path: data/train-*
 
 
 
 
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ size_categories: n<1K
3
  dataset_info:
4
  features:
5
  - name: instruction
 
17
  data_files:
18
  - split: train
19
  path: data/train-*
20
+ tags:
21
+ - synthetic
22
+ - distilabel
23
+ - rlaif
24
  ---
25
+
26
+ <p align="left">
27
+ <a href="https://github.com/argilla-io/distilabel">
28
+ <img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-light.png" alt="Built with Distilabel" width="200" height="32"/>
29
+ </a>
30
+ </p>
31
+
32
+ # Dataset Card for pipe_nothing_test
33
+
34
+ This dataset has been created with [distilabel](https://distilabel.argilla.io/).
35
+
36
+ ## Dataset Summary
37
+
38
+ This dataset contains a `pipeline.yaml` which can be used to reproduce the pipeline that generated it in distilabel using the `distilabel` CLI:
39
+
40
+ ```console
41
+ distilabel pipeline run --config "https://huggingface.co/datasets/plaguss/pipe_nothing_test/raw/main/pipeline.yaml"
42
+ ```
43
+
44
+ or explore the configuration:
45
+
46
+ ```console
47
+ distilabel pipeline info --config "https://huggingface.co/datasets/plaguss/pipe_nothing_test/raw/main/pipeline.yaml"
48
+ ```
49
+
50
+ ## Dataset structure
51
+
52
+ The examples have the following structure per configuration:
53
+
54
+
55
+ <details><summary> Configuration: default </summary><hr>
56
+
57
+ ```json
58
+ {
59
+ "instruction": "Tell me a joke.",
60
+ "response": "unit test"
61
+ }
62
+ ```
63
+
64
+ This subset can be loaded as:
65
+
66
+ ```python
67
+ from datasets import load_dataset
68
+
69
+ ds = load_dataset("plaguss/pipe_nothing_test", "default")
70
+ ```
71
+
72
+ Or simply as it follows, since there's only one configuration and is named `default`:
73
+
74
+ ```python
75
+ from datasets import load_dataset
76
+
77
+ ds = load_dataset("plaguss/pipe_nothing_test")
78
+ ```
79
+
80
+
81
+ </details>