Skip to content

Commit

Permalink
Try using tftransformers/bert-base-cased
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed Nov 26, 2024
1 parent 9fbfb2e commit 026867b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shiny/ui/_chat_tokenizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def get_default_tokenizer() -> TokenizersTokenizer | None:
try:
from tokenizers import Tokenizer

return Tokenizer.from_pretrained("bert-base-cased") # type: ignore
return Tokenizer.from_pretrained("tftransformers/bert-base-cased") # type: ignore
except Exception:
pass

Expand Down

0 comments on commit 026867b

Please sign in to comment.