Binaryy commited on
Commit
4a8710f
·
verified ·
1 Parent(s): d010332

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +78 -0
README.md CHANGED
@@ -1,4 +1,11 @@
1
  ---
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: context
@@ -22,4 +29,75 @@ configs:
22
  data_files:
23
  - split: train
24
  path: data/train-*
 
 
 
 
 
25
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ size_categories: n<1K
3
+ task_categories:
4
+ - text-generation
5
+ - text2text-generation
6
+ - text-retrieval
7
+ - question-answering
8
+ - sentence-similarity
9
  dataset_info:
10
  features:
11
  - name: context
 
29
  data_files:
30
  - split: train
31
  path: data/train-*
32
+ tags:
33
+ - synthetic
34
+ - distilabel
35
+ - rlaif
36
+ - datacraft
37
  ---
38
+
39
+ <p align="left">
40
+ <a href="https://github.com/argilla-io/distilabel">
41
+ <img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-light.png" alt="Built with Distilabel" width="200" height="32"/>
42
+ </a>
43
+ </p>
44
+
45
+ # Dataset Card for my-smol-ds
46
+
47
+ This dataset has been created with [distilabel](https://distilabel.argilla.io/).
48
+
49
+
50
+
51
+ ## Dataset Summary
52
+
53
+ This dataset contains a `pipeline.yaml` which can be used to reproduce the pipeline that generated it in distilabel using the `distilabel` CLI:
54
+
55
+ ```console
56
+ distilabel pipeline run --config "https://huggingface.co/datasets/Binaryy/my-smol-ds/raw/main/pipeline.yaml"
57
+ ```
58
+
59
+ or explore the configuration:
60
+
61
+ ```console
62
+ distilabel pipeline info --config "https://huggingface.co/datasets/Binaryy/my-smol-ds/raw/main/pipeline.yaml"
63
+ ```
64
+
65
+ ## Dataset structure
66
+
67
+ The examples have the following structure per configuration:
68
+
69
+
70
+ <details><summary> Configuration: default </summary><hr>
71
+
72
+ ```json
73
+ {
74
+ "context": "ANSI/IICRC S520 Standard for Professional Mold Remediation\n\nThird Edition Published December 2015\n\nInstitute of Inspection, Cleaning and Restoration Certification 4043 South Eastern Avenue Las Vegas, NV, 89119 USA (775) 553 5458 \u2022 www.iicrc.org\n\nCopyright \u00a9 2015, 2008, 2003 by the Institute of Inspection, Cleaning and Restoration Certification (IICRC). All rights reserved. No part of this publication may be used or reproduced in any manner whatsoever without written permission from the IICRC.",
75
+ "negative_retrieval": "Institute of Inspection, Cleaning and Restoration Certification 4043 South Eastern Avenue Las Vegas, NV, 89119 USA recently published their third edition of a comprehensive standard for cleaning and restoration services in the industry.",
76
+ "positive_retrieval": "What is the third edition of the ANSI/IICRC S520 Standard for Professional Mold Remediation published in?",
77
+ "question": "What is the third edition of the ANSI/IICRC S520 Standard for Professional Mold Remediation published in?",
78
+ "response": "December 2015."
79
+ }
80
+ ```
81
+
82
+ This subset can be loaded as:
83
+
84
+ ```python
85
+ from datasets import load_dataset
86
+
87
+ ds = load_dataset("Binaryy/my-smol-ds", "default")
88
+ ```
89
+
90
+ Or simply as it follows, since there's only one configuration and is named `default`:
91
+
92
+ ```python
93
+ from datasets import load_dataset
94
+
95
+ ds = load_dataset("Binaryy/my-smol-ds")
96
+ ```
97
+
98
+
99
+ </details>
100
+
101
+
102
+
103
+