Transformers How to use Aerosta/rewardhackwatch with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Aerosta/rewardhackwatch") # Load model directly
from transformers import AutoTokenizer, RewardHackClassifier
tokenizer = AutoTokenizer.from_pretrained("Aerosta/rewardhackwatch")
model = RewardHackClassifier.from_pretrained("Aerosta/rewardhackwatch")