S-Dreamer commited on
Commit
c2b4880
·
verified ·
1 Parent(s): 4873f95

Create preprocessor_config.json

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +15 -4
preprocessor_config.json CHANGED
@@ -1,6 +1,17 @@
1
  {
2
- "do_lower_case": false,
3
- "max_length": 128,
4
- "truncation": true,
5
- "padding": "max_length"
 
 
 
 
 
 
 
 
 
 
 
6
  }
 
1
  {
2
+ "preprocessors": [
3
+ {
4
+ "type": "Lowercase"
5
+ },
6
+ {
7
+ "type": "PreNFKC"
8
+ },
9
+ {
10
+ "type": "PunctuationNormalization"
11
+ },
12
+ {
13
+ "type": "WhitespaceNormalization"
14
+ }
15
+ ],
16
+ "version": "1.1"
17
  }