Transformers How to use Aya-In-Brooklyn/spaCy-roberta-workout-entity-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Aya-In-Brooklyn/spaCy-roberta-workout-entity-model") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("Aya-In-Brooklyn/spaCy-roberta-workout-entity-model", dtype="auto")