How to use chatwithnerd/tiny-bert-master-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="chatwithnerd/tiny-bert-master-classifier")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("chatwithnerd/tiny-bert-master-classifier") model = AutoModelForSequenceClassification.from_pretrained("chatwithnerd/tiny-bert-master-classifier")
What is a pickle import?