How to use wandb/celadon with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="wandb/celadon", trust_remote_code=True)
# Load model directly from transformers import AutoModelForSequenceClassification model = AutoModelForSequenceClassification.from_pretrained("wandb/celadon", trust_remote_code=True, dtype="auto")
Same model, just packed as a transformers model than you can load with:
from transformers import AutoModelForSequenceClassification AutoModelForSequenceClassification.from_pretrained("tcapelle/celadon", trust_remote_code=True)
Files info
Base model