If I want to create a tokenizer from scratch, should the special tokens use square brackets with uppercase letters, or angle brackets with lowercase letters?
That is, should cls_token be [CLS] or <cls>?
BertTokenizerFast uses the former one:
while many other examples on the Internet uses the latter one.