Mayank6255 commited on
Commit
866261b
·
verified ·
1 Parent(s): d77bd33

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ config_name: default
4
+ data_files: "*.jsonl"
5
+ dataset_size: 806254638230
6
+ license: mit
7
+ task_categories:
8
+ - text-generation
9
+ language:
10
+ - en
11
+ ---
12
+
13
+ # fineweb_samples
14
+
15
+ FINEWEB2-HQ dataset
16
+
17
+ ## Dataset Structure
18
+
19
+ This dataset contains 20 JSONL files with a total size of 768904.34 MB.
20
+
21
+ ### Files:
22
+ - `vie_Latn_sample.jsonl`: 39103.12 MB
23
+ - `dan_Latn_sample.jsonl`: 40235.78 MB
24
+ - `ell_Grek_sample.jsonl`: 46413.37 MB
25
+ - `swe_Latn_sample.jsonl`: 37160.80 MB
26
+ - `hun_Latn_sample.jsonl`: 44048.42 MB
27
+ - `fas_Arab_sample.jsonl`: 34376.49 MB
28
+ - `arb_Arab_sample.jsonl`: 44047.16 MB
29
+ - `ces_Latn_sample.jsonl`: 44426.14 MB
30
+ - `tur_Latn_sample.jsonl`: 31603.26 MB
31
+ - `ind_Latn_sample.jsonl`: 36857.45 MB
32
+ - `nld_Latn_sample.jsonl`: 32896.04 MB
33
+ - `pol_Latn_sample.jsonl`: 34761.09 MB
34
+ - `por_Latn_sample.jsonl`: 35137.73 MB
35
+ - `ita_Latn_sample.jsonl`: 35744.49 MB
36
+ - `fra_Latn_sample.jsonl`: 42017.91 MB
37
+ - `jpn_Jpan_sample.jsonl`: 30881.42 MB
38
+ - `spa_Latn_sample.jsonl`: 35319.36 MB
39
+ - `deu_Latn_sample.jsonl`: 36791.65 MB
40
+ - `cmn_Hani_sample.jsonl`: 38176.40 MB
41
+ - `rus_Cyrl_sample.jsonl`: 48906.22 MB
42
+
43
+ ## Usage
44
+
45
+ ```python
46
+ from datasets import load_dataset
47
+
48
+ dataset = load_dataset("path/to/this/dataset")
49
+ ```
50
+
51
+ ## Loading specific files
52
+
53
+ ```python
54
+ from datasets import load_dataset
55
+
56
+ # Load specific JSONL files
57
+ dataset = load_dataset("json", data_files=["file1.jsonl", "file2.jsonl"])
58
+ ```