Lambent commited on
Commit
2164a68
1 Parent(s): c814918

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Test dataset for testing a data sampling and filtering script.
2
+
3
+ Configuration for filtering:
4
+ ```
5
+ dataset: "HuggingFaceFW/fineweb-edu"
6
+ output_file: "quantum_computing_entries.jsonl"
7
+ state_file: "quantum_computing_dataset_state.json"
8
+
9
+ # Processing parameters
10
+ keywords:
11
+ - "quantum computing"
12
+ - "qubit"
13
+ - "quantum entanglement"
14
+ - "quantum supremacy"
15
+ - "quantum algorithm"
16
+ - "quantum error correction"
17
+
18
+ max_entries: 1024
19
+ min_tokens: 1024
20
+ max_tokens: 2048
21
+ min_int_score: 4
22
+
23
+ # Shuffling configuration
24
+ shuffle: true
25
+ seed: 42
26
+ ```