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