How to use devcryptodude/distilbert-base-cased-document-casual with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="devcryptodude/distilbert-base-cased-document-casual")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("devcryptodude/distilbert-base-cased-document-casual") model = AutoModelForSequenceClassification.from_pretrained("devcryptodude/distilbert-base-cased-document-casual")
The community tab is the place to discuss and collaborate with the HF community!