How to use Recognai/zeroshot_selectra_small with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-classification", model="Recognai/zeroshot_selectra_small")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Recognai/zeroshot_selectra_small") model = AutoModelForSequenceClassification.from_pretrained("Recognai/zeroshot_selectra_small")