Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
---
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: text
|
|
@@ -20,4 +21,72 @@ configs:
|
|
| 20 |
data_files:
|
| 21 |
- split: train
|
| 22 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
size_categories: n<1K
|
| 3 |
dataset_info:
|
| 4 |
features:
|
| 5 |
- name: text
|
|
|
|
| 21 |
data_files:
|
| 22 |
- split: train
|
| 23 |
path: data/train-*
|
| 24 |
+
tags:
|
| 25 |
+
- synthetic
|
| 26 |
+
- distilabel
|
| 27 |
+
- rlaif
|
| 28 |
+
- datacraft
|
| 29 |
---
|
| 30 |
+
|
| 31 |
+
<p align="left">
|
| 32 |
+
<a href="https://github.com/argilla-io/distilabel">
|
| 33 |
+
<img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-light.png" alt="Built with Distilabel" width="200" height="32"/>
|
| 34 |
+
</a>
|
| 35 |
+
</p>
|
| 36 |
+
|
| 37 |
+
# Dataset Card for my-distiset-1e19c746
|
| 38 |
+
|
| 39 |
+
This dataset has been created with [distilabel](https://distilabel.argilla.io/).
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
## Dataset Summary
|
| 44 |
+
|
| 45 |
+
This dataset contains a `pipeline.yaml` which can be used to reproduce the pipeline that generated it in distilabel using the `distilabel` CLI:
|
| 46 |
+
|
| 47 |
+
```console
|
| 48 |
+
distilabel pipeline run --config "https://huggingface.co/datasets/heyitsys/my-distiset-1e19c746/raw/main/pipeline.yaml"
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
or explore the configuration:
|
| 52 |
+
|
| 53 |
+
```console
|
| 54 |
+
distilabel pipeline info --config "https://huggingface.co/datasets/heyitsys/my-distiset-1e19c746/raw/main/pipeline.yaml"
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
## Dataset structure
|
| 58 |
+
|
| 59 |
+
The examples have the following structure per configuration:
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
<details><summary> Configuration: default </summary><hr>
|
| 63 |
+
|
| 64 |
+
```json
|
| 65 |
+
{
|
| 66 |
+
"label": 1,
|
| 67 |
+
"text": "Hello, my name is Sarah and I\u0027m calling from Microsoft\u0027s Security Team. I\u0027m reaching out to inform you that we\u0027ve received multiple reports of suspicious activity on your Windows account. We\u0027ve detected unauthorized access attempts from an unknown location, and we need to verify your account details to prevent any further issues. Can you please confirm your account information and provide your Windows password to verify your identity?"
|
| 68 |
+
}
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
This subset can be loaded as:
|
| 72 |
+
|
| 73 |
+
```python
|
| 74 |
+
from datasets import load_dataset
|
| 75 |
+
|
| 76 |
+
ds = load_dataset("heyitsys/my-distiset-1e19c746", "default")
|
| 77 |
+
```
|
| 78 |
+
|
| 79 |
+
Or simply as it follows, since there's only one configuration and is named `default`:
|
| 80 |
+
|
| 81 |
+
```python
|
| 82 |
+
from datasets import load_dataset
|
| 83 |
+
|
| 84 |
+
ds = load_dataset("heyitsys/my-distiset-1e19c746")
|
| 85 |
+
```
|
| 86 |
+
|
| 87 |
+
|
| 88 |
+
</details>
|
| 89 |
+
|
| 90 |
+
|
| 91 |
+
|
| 92 |
+
|