Ill-Ness commited on
Commit
81dd693
·
verified ·
1 Parent(s): 0a41876

Upload UltraAtlas

Browse files
Files changed (3) hide show
  1. README.md +72 -0
  2. data/train.parquet +3 -0
  3. dataset_info.json +16 -0
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: other
5
+ task_categories:
6
+ - question-answering
7
+ - text-generation
8
+ tags:
9
+ - question-answering
10
+ - text-generation
11
+ - chat
12
+ - instruction-tuning
13
+ - non-synthetic
14
+ - dl26
15
+ size_categories:
16
+ - 100K<n<1M
17
+ ---
18
+
19
+ # UltraAtlas
20
+
21
+ UltraAtlas is a high-quality English question-answering dataset prepared by **Dl26** for text-generation and chat-style model training.
22
+
23
+ The dataset is converted from **SQuAD v2** into a consistent assistant format with `prompt`, `response`, and `messages` fields. It is intended for supervised fine-tuning of general assistant models that need strong question answering behavior.
24
+
25
+ ## Dataset Details
26
+
27
+ | Property | Value |
28
+ | --- | --- |
29
+ | Dataset name | `UltraAtlas` |
30
+ | Developer | Dl26 |
31
+ | Source dataset | `rajpurkar/squad_v2` |
32
+ | Rows | 130,319 |
33
+ | Language | English |
34
+ | Task | Question answering / text generation |
35
+ | Format | Single-turn chat with user and assistant messages |
36
+ | Synthetic data | No model-generated synthetic answers are added |
37
+
38
+ ## Fields
39
+
40
+ | Field | Description |
41
+ | --- | --- |
42
+ | `id` | Stable row identifier for this converted dataset |
43
+ | `source_dataset` | Upstream dataset identifier |
44
+ | `source_id` | Upstream row or question identifier when available |
45
+ | `task` | QA task family |
46
+ | `prompt` | User-facing instruction/question text |
47
+ | `response` | Ground-truth answer text |
48
+ | `messages` | Chat-format list with `user` and `assistant` turns |
49
+ | `quality_source` | Short provenance note |
50
+
51
+ ## Example
52
+
53
+ ```python
54
+ from datasets import load_dataset
55
+
56
+ dataset = load_dataset("Dl26/UltraAtlas", split="train")
57
+ print(dataset[0]["messages"])
58
+ ```
59
+
60
+ ## Intended Use
61
+
62
+ UltraAtlas is intended for:
63
+
64
+ * supervised fine-tuning of text-generation models
65
+ * question-answering behavior training
66
+ * single-turn assistant training
67
+ * retrieval and answer-grounding experiments
68
+ * general English QA evaluation and data mixing
69
+
70
+ ## Source and Licensing
71
+
72
+ This dataset is a format conversion of `rajpurkar/squad_v2`. The conversion keeps source provenance fields so users can inspect origin and terms. Upstream dataset licenses and terms still apply.
data/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54426d58e4dbf811f0aade6d396f3665cac127860bdb9ab20d50de50e3b35fde
3
+ size 43854854
dataset_info.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "UltraAtlas",
3
+ "rows": 130319,
4
+ "features": [
5
+ "id",
6
+ "source_dataset",
7
+ "source_id",
8
+ "task",
9
+ "prompt",
10
+ "response",
11
+ "messages",
12
+ "quality_source"
13
+ ],
14
+ "source_dataset": "rajpurkar/squad_v2",
15
+ "format": "prompt/response/messages"
16
+ }