SOBAMD commited on
Commit
3ecdee6
·
verified ·
1 Parent(s): 482f8f6

remove unk_token : null value to prevent issues with downstream tools

Browse files

Most tools ignore the null value but a few tools expect a string value or no value at all and this prevents them from loading the model correctly

Files changed (1) hide show
  1. tokenizer_config.json +1 -2
tokenizer_config.json CHANGED
@@ -234,6 +234,5 @@
234
  "eos_token": "|||IP_ADDRESS|||",
235
  "model_max_length": 2048,
236
  "pad_token": "<|padding|>",
237
- "tokenizer_class": "GPTNeoXTokenizer",
238
- "unk_token": null
239
  }
 
234
  "eos_token": "|||IP_ADDRESS|||",
235
  "model_max_length": 2048,
236
  "pad_token": "<|padding|>",
237
+ "tokenizer_class": "GPTNeoXTokenizer"
 
238
  }