Gugu8 commited on
Commit
2b46ffc
·
verified ·
1 Parent(s): d18f0c4

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - en
7
+ tags:
8
+ - patterns
9
+ - sequences
10
+ - arithmetic
11
+ - fibonacci
12
+ - polynomial
13
+ - llm-training
14
+ - synthetic
15
+ pretty_name: Pattern Completion Dataset (30GB)
16
+ size_categories:
17
+ - 10M<n<100M
18
+ ---
19
+ # Pattern Completion Dataset
20
+
21
+ A **30 GB** synthetic dataset of numeric sequence‑completion prompts and their next values, designed to teach large language models how to recognize and extrapolate patterns.
22
+
23
+ Each row contains a **prompt** (the sequence with a `?` indicating the missing next element) and a **completion** (the correct next number).
24
+
25
+ ## Dataset Structure
26
+
27
+ - **Format:** CSV (no header row)
28
+ - **Columns:**
29
+ - `prompt` – `"Find the next number in the sequence: a,b,c,... ,?"`
30
+ - `completion` – the correct next integer
31
+ - **Total rows:** ~405 million
32
+ - **Uncompressed size:** 30 GB
33
+ - **Average row length:** 74 bytes
34
+ - **File:** `pattern_data.csv`
35
+
36
+ ## Examples
37
+
38
+ ```csv
39
+ "Find the next number in the sequence: 3,6,9,12,15,?","18"
40
+ "Find the next number in the sequence: 2,4,8,16,32,?","64"
41
+ "Find the next number in the sequence: 5,10,5,10,5,?","10"
42
+ "Find the next number in the sequence: 1,1,2,3,5,?","8"
43
+ "Find the next number in the sequence: 1,4,9,16,25,?","36"
44
+ ```
45
+ ## License
46
+ Open Data Attribution Training Disclosure License (ODATL‑1.0)