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