How to use MoritzLaurer/xtremedistil-l6-h256-mnli-fever-anli-ling-binary with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-classification", model="MoritzLaurer/xtremedistil-l6-h256-mnli-fever-anli-ling-binary")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("MoritzLaurer/xtremedistil-l6-h256-mnli-fever-anli-ling-binary") model = AutoModelForSequenceClassification.from_pretrained("MoritzLaurer/xtremedistil-l6-h256-mnli-fever-anli-ling-binary")