davidberenstein1957 HF staff commited on
Commit
5daa3bc
1 Parent(s): 59451b0

Upload README.md with huggingface_hub

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