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