Token Classification
Transformers
PyTorch
Safetensors
bloom
text-generation-inference
8-bit precision
Instructions to use rs224/bloom-1b7-8bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use rs224/bloom-1b7-8bit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="rs224/bloom-1b7-8bit")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("rs224/bloom-1b7-8bit") model = AutoModelForTokenClassification.from_pretrained("rs224/bloom-1b7-8bit") - Notebooks
- Google Colab
- Kaggle