Skip to content

Commit

Permalink
Don't add bos token in test
Browse files Browse the repository at this point in the history
  • Loading branch information
goerch committed Oct 10, 2023
1 parent 8d0c575 commit d0c8d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test-tokenizer-0-falcon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ int main(int argc, char **argv) {

fprintf(stderr, "%s : text size: %zu\n", __func__, text.size());

const std::vector<llama_token> res = llama_tokenize(ctx, text, true);
const std::vector<llama_token> res = llama_tokenize(ctx, text, false);

fprintf(stderr, "%s : tokens: %zu\n", __func__, res.size());

Expand Down

0 comments on commit d0c8d14

Please sign in to comment.