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