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