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