Transformers How to use row56/ProtoPatient with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="row56/ProtoPatient") # Load model directly
from transformers import ProtoForMultiLabelClassification
model = ProtoForMultiLabelClassification.from_pretrained("row56/ProtoPatient", dtype="auto")