Weave Local Scorers
Collection
Locally runnable models as described in the Weave documentation here: https://weave-docs.wandb.ai/guides/evaluation/weave_local_scorers • 7 items • Updated
How to use wandb/WeaveToxicityScorerV1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="wandb/WeaveToxicityScorerV1", trust_remote_code=True) # Load model directly
from transformers import AutoModelForSequenceClassification
model = AutoModelForSequenceClassification.from_pretrained("wandb/WeaveToxicityScorerV1", trust_remote_code=True, dtype="auto")Base model
PleIAs/celadon