WayneWX commited on
Commit
4cf3d56
·
verified ·
1 Parent(s): 2eaf6dd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md CHANGED
@@ -1,4 +1,10 @@
1
  ---
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: context
@@ -18,4 +24,73 @@ configs:
18
  data_files:
19
  - split: train
20
  path: data/train-*
 
 
 
 
 
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ size_categories: n<1K
3
+ task_categories:
4
+ - text-generation
5
+ - text2text-generation
6
+ - text-retrieval
7
+ - question-answering
8
  dataset_info:
9
  features:
10
  - name: context
 
24
  data_files:
25
  - split: train
26
  path: data/train-*
27
+ tags:
28
+ - synthetic
29
+ - distilabel
30
+ - rlaif
31
+ - datacraft
32
  ---
33
+
34
+ <p align="left">
35
+ <a href="https://github.com/argilla-io/distilabel">
36
+ <img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-light.png" alt="Built with Distilabel" width="200" height="32"/>
37
+ </a>
38
+ </p>
39
+
40
+ # Dataset Card for fire
41
+
42
+ This dataset has been created with [distilabel](https://distilabel.argilla.io/).
43
+
44
+
45
+
46
+ ## Dataset Summary
47
+
48
+ This dataset contains a `pipeline.yaml` which can be used to reproduce the pipeline that generated it in distilabel using the `distilabel` CLI:
49
+
50
+ ```console
51
+ distilabel pipeline run --config "https://huggingface.co/datasets/WayneWX/fire/raw/main/pipeline.yaml"
52
+ ```
53
+
54
+ or explore the configuration:
55
+
56
+ ```console
57
+ distilabel pipeline info --config "https://huggingface.co/datasets/WayneWX/fire/raw/main/pipeline.yaml"
58
+ ```
59
+
60
+ ## Dataset structure
61
+
62
+ The examples have the following structure per configuration:
63
+
64
+
65
+ <details><summary> Configuration: default </summary><hr>
66
+
67
+ ```json
68
+ {
69
+ "context": "**\u6d88\u9632\u51fa\u8b66\u6570\u636e**\n\n* \u4eba\u529b\u8d44\u6e90\u914d\u5907\uff1a\n * \u6d88\u9632\u5458\u6570\u91cf\uff1a\u6bcf\u5343\u4eba\u4e2d1\u540d\u6d88\u9632\u5458\n * \u8f7d\u5177\u4eba\u5458\u6bd4\u4f8b\uff1a\u6d88\u9632\u5458\uff1a\u8f7d\u5177\u4eba\u5458 = 3:2\n * \u6307\u6325\u5b98\u548c\u6280\u672f\u4eba\u5458\u6bd4\u4f8b\uff1a\u6d88\u9632\u5458\uff1a\u6307\u6325\u5b98\u548c\u6280\u672f\u4eba\u5458 = 10:1\n* \u88c5\u5907\u914d\u7f6e\uff1a\n * \u6d88\u9632\u8f66\u6570\u91cf\uff1a\u6bcf100\u5e73\u65b9\u5343\u7c731\u8f86\n * \u6551\u63f4\u8f66\u6570\u91cf\uff1a\u6bcf50\u5e73\u65b9\u5343\u7c731\u8f86\n * \u6551\u63f4\u8247\u6570\u91cf\uff1a\u6cbf\u6d77\u5730\u533a\u6bcf100\u516c\u91cc1\u8258\n* \u9884\u7b97\u914d\u7f6e\uff1a\n * \u6d88\u9632\u5458\u57f9\u8bad\u8d39\u7528\uff1a\u6bcf\u5e74100\u4e07\u5143\u4eba\u6c11\u5e01\n * \u8bbe\u5907\u7ef4\u62a4\u8d39\u7528\uff1a\u8bbe\u5907\u6210\u672c\u76845%\n * \u6d88\u9632\u6551\u63f4\u8bbe\u5907\u91c7\u8d2d\u8d39\u7528\uff1a\u6bcf\u5e74500\u4e07\u5143\u4eba\u6c11\u5e01",
70
+ "question": null,
71
+ "response": "It seems there is no question provided. If you could provide a question related to the document, I\u0027ll be happy to help you answer it based on the information provided."
72
+ }
73
+ ```
74
+
75
+ This subset can be loaded as:
76
+
77
+ ```python
78
+ from datasets import load_dataset
79
+
80
+ ds = load_dataset("WayneWX/fire", "default")
81
+ ```
82
+
83
+ Or simply as it follows, since there's only one configuration and is named `default`:
84
+
85
+ ```python
86
+ from datasets import load_dataset
87
+
88
+ ds = load_dataset("WayneWX/fire")
89
+ ```
90
+
91
+
92
+ </details>
93
+
94
+
95
+
96
+