Credit Card Information Model
This model is fine-tuned for extracting credit card details like benefits, offers, and eligibility.
Usage
from transformers import AutoModelForSequenceClassification, AutoTokenizer
model_name = "minalsetia/Credit_model"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForSequenceClassification.from_pretrained(model_name)
text = "Tell me about the IDFC FIRST Bank Credit Card benefits."
inputs = tokenizer(text, return_tensors="pt")
outputs = model(**inputs)
print(outputs)
- Downloads last month
- 75
Inference Providers
NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API:
The model has no library tag.
Model tree for minalsetia/Credit_model
Base model
meta-llama/Llama-3.2-1B