Instructions to use HuggingFaceBio/Carbon-3B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HuggingFaceBio/Carbon-3B with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("HuggingFaceBio/Carbon-3B", dtype="auto") - Notebooks
- Google Colab
- Kaggle
tokenizer: expose .vocab property for fast-tokenizer-style callers
#4
by kashif HF Staff - opened
Adds a vocab property mirroring get_vocab() so downstream tools that expect the fast-tokenizer interface (e.g. llama.cpp's convert_hf_to_gguf.py which does tokenizer.vocab) work without a fallback. No behavior change.
kashif changed pull request status to merged