File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -147,15 +147,8 @@ Error HFTokenizer::load(const std::string& path) {
147
147
148
148
// Pull out the token strings
149
149
try {
150
- const std::string bos_token =
151
- parsed_config_json.contains (" bos_token" ) && !parsed_config_json[" bos_token" ].is_null ()
152
- ? parsed_config_json[" bos_token" ].get <std::string>()
153
- : " " ;
154
-
155
- const std::string eos_token =
156
- parsed_config_json.contains (" eos_token" ) && !parsed_config_json[" eos_token" ].is_null ()
157
- ? parsed_config_json[" eos_token" ].get <std::string>()
158
- : " " ;
150
+ const std::string bos_token = parsed_config_json.at (" bos_token" );
151
+ const std::string eos_token = parsed_config_json.at (" eos_token" );
159
152
const auto bos_res = special_token_map_->tryGetInteger (bos_token);
160
153
const auto eos_res = special_token_map_->tryGetInteger (eos_token);
161
154
if (!bos_res) {
You can’t perform that action at this time.
0 commit comments