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