3.0.1 • Published 1 year ago
@lenml/tokenizer-baichuan2 v3.0.1
@lenml/tokenizer-baichuan2
a tokenizer.
based on
@lenml/tokenizers
Usage
import { fromPreTrained } from "@lenml/tokenizer-baichuan2";
const tokenizer = fromPreTrained();
console.log(
    "encode()",
    tokenizer.encode("Hello, my dog is cute", null, {
        add_special_tokens: true,
    })
);
console.log(
    "_encode_text",
    tokenizer._encode_text("Hello, my dog is cute")
);Full Tokenizer API
Complete api parameters and usage can be found in transformer.js tokenizers document
License
Apache-2.0