Wesamalnabki-bsc commited on
Commit
b61f908
·
verified ·
1 Parent(s): 3841ff6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +71 -0
README.md CHANGED
@@ -1,4 +1,7 @@
1
  ---
 
 
 
2
  dataset_info:
3
  features:
4
  - name: text
@@ -34,4 +37,72 @@ configs:
34
  data_files:
35
  - split: train
36
  path: data/train-*
 
 
 
 
 
37
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ size_categories: n<1K
3
+ task_categories:
4
+ - text-classification
5
  dataset_info:
6
  features:
7
  - name: text
 
37
  data_files:
38
  - split: train
39
  path: data/train-*
40
+ tags:
41
+ - synthetic
42
+ - distilabel
43
+ - rlaif
44
+ - datacraft
45
  ---
46
+
47
+ <p align="left">
48
+ <a href="https://github.com/argilla-io/distilabel">
49
+ <img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-light.png" alt="Built with Distilabel" width="200" height="32"/>
50
+ </a>
51
+ </p>
52
+
53
+ # Dataset Card for my-distiset-d3dd466c
54
+
55
+ This dataset has been created with [distilabel](https://distilabel.argilla.io/).
56
+
57
+
58
+
59
+ ## Dataset Summary
60
+
61
+ This dataset contains a `pipeline.yaml` which can be used to reproduce the pipeline that generated it in distilabel using the `distilabel` CLI:
62
+
63
+ ```console
64
+ distilabel pipeline run --config "https://huggingface.co/datasets/Wesamalnabki-bsc/my-distiset-d3dd466c/raw/main/pipeline.yaml"
65
+ ```
66
+
67
+ or explore the configuration:
68
+
69
+ ```console
70
+ distilabel pipeline info --config "https://huggingface.co/datasets/Wesamalnabki-bsc/my-distiset-d3dd466c/raw/main/pipeline.yaml"
71
+ ```
72
+
73
+ ## Dataset structure
74
+
75
+ The examples have the following structure per configuration:
76
+
77
+
78
+ <details><summary> Configuration: default </summary><hr>
79
+
80
+ ```json
81
+ {
82
+ "label": 7,
83
+ "text": "The Treaty of Versailles was signed on June 28, 1919, in the Hall of Mirrors at the Palace of Versailles in Versailles, France. The treaty imposed harsh penalties on Germany, including significant territorial losses and heavy reparations. The treaty officially ended World War I, but its terms have been widely criticized for contributing to the outbreak of World War II."
84
+ }
85
+ ```
86
+
87
+ This subset can be loaded as:
88
+
89
+ ```python
90
+ from datasets import load_dataset
91
+
92
+ ds = load_dataset("Wesamalnabki-bsc/my-distiset-d3dd466c", "default")
93
+ ```
94
+
95
+ Or simply as it follows, since there's only one configuration and is named `default`:
96
+
97
+ ```python
98
+ from datasets import load_dataset
99
+
100
+ ds = load_dataset("Wesamalnabki-bsc/my-distiset-d3dd466c")
101
+ ```
102
+
103
+
104
+ </details>
105
+
106
+
107
+
108
+