aegislm / defender /classifiers /__init__.py
ACA050's picture
Upload folder using huggingface_hub
c624cb8 verified
Raw
History Blame Contribute Delete
325 Bytes
"""
Defender Classifiers Module
Model-based detection classifiers for the defender agent.
"""
from agents.defender.classifiers.semantic_policy import SemanticPolicyChecker
from agents.defender.classifiers.toxicity import ToxicityClassifier
__all__ = [
"ToxicityClassifier",
"SemanticPolicyChecker",
]