-
Notifications
You must be signed in to change notification settings - Fork 174
/
redpajama-cc-2021-04-refine.yaml
60 lines (56 loc) · 1.78 KB
/
redpajama-cc-2021-04-refine.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# global parameters
project_name: 'Data-Juicer-recipes-cc-2021-04'
dataset_path: '/path/to/your/dataset' # path to your dataset directory or file
export_path: '/path/to/your/dataset.jsonl'
np: 50 # number of subprocess to process your dataset
open_tracer: true
# process schedule
# a list of several process operators with their arguments
process:
- document_simhash_deduplicator:
tokenization: space
window_size: 6
lowercase: true
ignore_pattern: '\p{P}'
num_blocks: 6
hamming_distance: 4
- clean_email_mapper:
- clean_links_mapper:
- fix_unicode_mapper:
- punctuation_normalization_mapper:
- whitespace_normalization_mapper:
- alphanumeric_filter:
tokenization: false
min_ratio: 0.7494 # 3sigma
max_ratio: 0.8595 # 3sigma -- 1001790
- average_line_length_filter: # for code
max_len: 1500 # < 3sigma (2817) -- 541131
- character_repetition_filter:
rep_len: 10
max_ratio: 0.3 # > 3sigma (0.1463) -- 159152
- flagged_words_filter:
lang: en
tokenization: true
max_ratio: 0.0019 # 3sigma -- 184714
- language_id_score_filter: # remove language filter
min_score: 0.786 # 3sigma -- 1995115
- maximum_line_length_filter: # for code
max_len: 5000 # < 3sigma -- 1076085
- perplexity_filter:
lang: en
max_ppl: 5000 # < 3sigma -- 906649
- special_characters_filter:
min_ratio: 0.15 # > 3sigma
max_ratio: 0.35 # > 3sigma -- 1046590
- text_length_filter:
max_len: 61592 # 3sigma -- 1114727
- words_num_filter:
lang: en
tokenization: true
min_num: 20 # > 3sigma
max_num: 12241 # 3sigma -- 1120334
- word_repetition_filter:
lang: en
tokenization: true
rep_len: 10
max_ratio: 0.3105 # 3sigma -- 2234933