Zero-Shot Classification
Transformers
PyTorch
JAX
Safetensors
Norwegian
bert
text-classification
nb-bert
tensorflow
norwegian
Instructions to use NbAiLab/nb-bert-base-mnli with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NbAiLab/nb-bert-base-mnli with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-classification", model="NbAiLab/nb-bert-base-mnli")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("NbAiLab/nb-bert-base-mnli") model = AutoModelForSequenceClassification.from_pretrained("NbAiLab/nb-bert-base-mnli") - Notebooks
- Google Colab
- Kaggle
Ctrl+K