kairaamilanii
commited on
Update README.md
Browse files# Implementation
from transformers import pipeline
model = "/content/RoBERTa-mind14-classifier-intent"
classifier = pipeline("text-classification", model=model)
text = "hi what's the maximum amount of money I can withdraw from" # Replace with your desired input text
prediction = classifier(text)
prediction