# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("GuardrailsAI/prompt-saturation-attack-detector")
model = AutoModelForSequenceClassification.from_pretrained("GuardrailsAI/prompt-saturation-attack-detector")Quick Links
- Downloads last month
- 61,920
Model tree for GuardrailsAI/prompt-saturation-attack-detector
Base model
google-bert/bert-base-uncased
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="GuardrailsAI/prompt-saturation-attack-detector")