Transformers How to use mcanoglu/microsoft-codebert-base-finetuned-defect-cwe-group-detection with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="mcanoglu/microsoft-codebert-base-finetuned-defect-cwe-group-detection") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("mcanoglu/microsoft-codebert-base-finetuned-defect-cwe-group-detection")
model = AutoModelForSequenceClassification.from_pretrained("mcanoglu/microsoft-codebert-base-finetuned-defect-cwe-group-detection")