remove unk_token : null value to prevent issues with downstream tools
Browse filesMost 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
- 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 |
}
|