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