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