Text Classification
Transformers
PyTorch
Safetensors
English
bert
feature-extraction
Eval Results (legacy)
text-embeddings-inference
Instructions to use shhossain/bert-tiny-book-text-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use shhossain/bert-tiny-book-text-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="shhossain/bert-tiny-book-text-classifier")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("shhossain/bert-tiny-book-text-classifier") model = AutoModel.from_pretrained("shhossain/bert-tiny-book-text-classifier") - Notebooks
- Google Colab
- Kaggle