raygx commited on
Commit
ad00119
1 Parent(s): e06ff66

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -0
README.md ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ # This is only a tokenizer.
2
+
3
+ - This tokenizer is a PreTrainedTokenizerFast which is trained on raygx/Nepali-Extended-Corpus datasets.
4
+ - This tokenizer is trained from scratch using Tokenizers library.
5
+ - This tokenizer uses
6
+ - Model: BPE(unk_token="[UNK]")
7
+ - Normalizer: normalizers.Sequence([NFD(),Strip()])
8
+ - Pre-processor: pre_tokenizers.Sequence([Whitespace(),Digits(individual_digits=True), Punctuation()])
9
+ - Post-processor: BertProcessing